Java Code Examples for org.hl7.fhir.dstu3.model.AllergyIntolerance#SP_DATE
The following examples show how to use
org.hl7.fhir.dstu3.model.AllergyIntolerance#SP_DATE .
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: AllergyIntoleranceRepository.java From careconnect-reference-implementation with Apache License 2.0 | 5 votes |
List<AllergyIntolerance> search( FhirContext ctx, @OptionalParam(name = AllergyIntolerance.SP_PATIENT) ReferenceParam patient , @OptionalParam(name = AllergyIntolerance.SP_DATE) DateRangeParam date , @OptionalParam(name = AllergyIntolerance.SP_CLINICAL_STATUS) TokenParam clinicalStatus , @OptionalParam(name = AllergyIntolerance.SP_IDENTIFIER) TokenParam identifier , @OptionalParam(name= AllergyIntolerance.SP_RES_ID) StringParam id , @OptionalParam(name = AllergyIntolerance.SP_VERIFICATION_STATUS) TokenParam verificationStatus );
Example 2
Source File: AllergyIntoleranceRepository.java From careconnect-reference-implementation with Apache License 2.0 | 5 votes |
List<AllergyIntoleranceEntity> searchEntity(FhirContext ctx, @OptionalParam(name = AllergyIntolerance.SP_PATIENT) ReferenceParam patient , @OptionalParam(name = AllergyIntolerance.SP_DATE) DateRangeParam date , @OptionalParam(name = AllergyIntolerance.SP_CLINICAL_STATUS) TokenParam clinicalStatus , @OptionalParam(name = AllergyIntolerance.SP_IDENTIFIER) TokenParam identifier , @OptionalParam(name= AllergyIntolerance.SP_RES_ID) StringParam id , @OptionalParam(name = AllergyIntolerance.SP_VERIFICATION_STATUS) TokenParam verificationStatus );
Example 3
Source File: AllergyIntoleranceProvider.java From careconnect-reference-implementation with Apache License 2.0 | 5 votes |
@Search public List<AllergyIntolerance> search(HttpServletRequest theRequest, @OptionalParam(name = AllergyIntolerance.SP_PATIENT) ReferenceParam patient , @OptionalParam(name = AllergyIntolerance.SP_DATE) DateRangeParam date , @OptionalParam(name = AllergyIntolerance.SP_CLINICAL_STATUS) TokenParam clinicalStatus , @OptionalParam(name = AllergyIntolerance.SP_IDENTIFIER) TokenParam identifier , @OptionalParam(name = AllergyIntolerance.SP_RES_ID) StringParam resid , @OptionalParam(name = AllergyIntolerance.SP_VERIFICATION_STATUS) TokenParam verificationStatus ) { return allergyDao.search(ctx,patient, date, clinicalStatus,identifier,resid, verificationStatus); }