Add isServerSide for seeing if code systems are only supported on the server
This commit is contained in:
parent
a111989bb4
commit
a939e14db9
|
@ -803,7 +803,10 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public boolean isServerSideSystem(String url) {
|
||||||
|
boolean check = supportsSystem(url);
|
||||||
|
return check && supportedCodeSystems.contains(url);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
protected void txLog(String msg) {
|
protected void txLog(String msg) {
|
||||||
|
|
|
@ -656,4 +656,6 @@ public interface IWorkerContext {
|
||||||
*/
|
*/
|
||||||
public Boolean subsumes(ValidationOptions options, Coding parent, Coding child);
|
public Boolean subsumes(ValidationOptions options, Coding parent, Coding child);
|
||||||
|
|
||||||
|
public boolean isServerSideSystem(String url);
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue