...
Code Block | ||
---|---|---|
| ||
public interface SearchCriteria { public enum Criteria { PatientId, RepositoryId, DocumentId } public SearchCriteria add(Criteria c, String value); public String getCriteriaValue(Criteria c); public Iterator<Criteria> getSearchCriteriaKeys(); } |
The SearchCriteria interface reprecents the criteria what will be used for searching the metaData and DOM documents from the national side. Currently the possible criteria values are in the Criteria enum.
Implementation
From the national component side
...