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…
Reference in New Issue