Java Code Examples for org.hl7.fhir.dstu3.model.ListResource#SP_IDENTIFIER

The following examples show how to use org.hl7.fhir.dstu3.model.ListResource#SP_IDENTIFIER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ListProvider.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
@Search
public List<ListResource> searchQuestionnaire(HttpServletRequest theRequest,
                                                       @OptionalParam(name = ListResource.SP_IDENTIFIER) TokenParam identifier,
                                                       @OptionalParam(name= ListResource.SP_RES_ID) StringParam id,
                                                       @OptionalParam(name = ListResource.SP_PATIENT) ReferenceParam patient
) {
    return listDao.searchListResource(ctx, identifier,id,patient);
}
 
Example 2
Source File: ListRepository.java    From careconnect-reference-implementation with Apache License 2.0 4 votes vote down vote up
List<ListEntity> searchListEntity(FhirContext ctx,
                                                                    @OptionalParam(name = ListResource.SP_IDENTIFIER) TokenParam identifier,
                                                                    @OptionalParam(name = ListResource.SP_RES_ID) StringParam id,
                                                                    @OptionalParam(name = ListResource.SP_PATIENT) ReferenceParam patient
);
 
Example 3
Source File: ListRepository.java    From careconnect-reference-implementation with Apache License 2.0 3 votes vote down vote up
List<ListResource> searchListResource(FhirContext ctx,

                                                            @OptionalParam(name = ListResource.SP_IDENTIFIER) TokenParam identifier,
                                                            @OptionalParam(name = ListResource.SP_RES_ID) StringParam id,
                                                            @OptionalParam(name = ListResource.SP_PATIENT) ReferenceParam patient

    );