mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
Split value set validation into 10k batches for very large extensional value sets
This commit is contained in:
parent
487094ccc7
commit
b548b98496
@ -215,6 +215,8 @@ public class RenderingContext {
|
||||
|
||||
private Map<KnownLinkType, String> links = new HashMap<>();
|
||||
private Map<String, String> namedLinks = new HashMap<>();
|
||||
private boolean addName = false;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param context - access to all related resources that might be needed
|
||||
@ -728,5 +730,14 @@ public class RenderingContext {
|
||||
this.fixedFormat = fixedFormat;
|
||||
}
|
||||
|
||||
public boolean isAddName() {
|
||||
return addName;
|
||||
}
|
||||
|
||||
public RenderingContext setAddName(boolean addName) {
|
||||
this.addName = addName;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user