Split value set validation into 10k batches for very large extensional value sets

This commit is contained in:
Grahame Grieve 2024-02-10 23:11:23 +11:00
parent 487094ccc7
commit b548b98496
1 changed files with 11 additions and 0 deletions

View File

@ -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;
}
}