コード例 #1
0
 public boolean isCodeFoundInCodesystems(String code, List<String> codeSystems) {
   return vocabularyCodeService.isFoundByCodeInCodeSystems(code, new HashSet<>(codeSystems));
 }
コード例 #2
0
 public List<Code> getByCodeInCodesystems(String code, List<String> codeSystems) {
   return vocabularyCodeService.getByCodeInCodeSystems(code, codeSystems);
 }
コード例 #3
0
 public boolean isCodeAndDisplayNameFoundInCodeSystems(
     String code, String displayName, List<String> codeSystems) {
   return vocabularyCodeService.isFoundByCodeAndDisplayNameInCodeSystems(
       code, displayName, new HashSet<>(codeSystems));
 }