fixes for processing code validation outcomes
This commit is contained in:
parent
7d2c03285c
commit
3d1676170a
|
@ -626,7 +626,13 @@ public interface IWorkerContext {
|
||||||
return message != null;
|
return message != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Coding asCoding() {
|
||||||
|
if (isOk() && definition != null && definition.getCode() != null) {
|
||||||
|
return new Coding(system, definition.getCode(), definition.getDisplay());
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -124,6 +124,9 @@ public interface ValueSetExpander {
|
||||||
return allErrors;
|
return allErrors;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isOk() {
|
||||||
|
return (allErrors.isEmpty() || (allErrors.size() == 1 && allErrors.get(0) == null)) && error == null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue