Java Code Examples for org.hl7.fhir.dstu3.model.Immunization#SP_NOTGIVEN

The following examples show how to use org.hl7.fhir.dstu3.model.Immunization#SP_NOTGIVEN . 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: ImmunizationRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<Immunization> search(FhirContext ctx,

            @OptionalParam(name = Immunization.SP_PATIENT) ReferenceParam patient
            , @OptionalParam(name = Immunization.SP_DATE) DateRangeParam date
            , @OptionalParam(name = Immunization.SP_STATUS) TokenParam status
            , @OptionalParam(name = Immunization.SP_IDENTIFIER) TokenParam identifier
            , @OptionalParam(name= Immunization.SP_RES_ID) StringParam id
            , @OptionalParam(name= "vaccination-procedure") TokenParam procedureCode
            , @OptionalParam(name= Immunization.SP_NOTGIVEN) TokenParam notGiven

    );
 
Example 2
Source File: ImmunizationRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<ImmunisationEntity> searchEntity(FhirContext ctx,
        @OptionalParam(name = Immunization.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Immunization.SP_DATE) DateRangeParam date
        , @OptionalParam(name = Immunization.SP_STATUS) TokenParam status
        , @OptionalParam(name = Immunization.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name= Immunization.SP_RES_ID) StringParam id
        , @OptionalParam(name= "vaccination-procedure") TokenParam procedureCode
        , @OptionalParam(name= Immunization.SP_NOTGIVEN) TokenParam notGiven
);
 
Example 3
Source File: ImmunizationProvider.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
@Search
public List<Immunization> search(HttpServletRequest theRequest,
                                      @OptionalParam(name = Immunization.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Immunization.SP_DATE) DateRangeParam date
        , @OptionalParam(name = Immunization.SP_STATUS) TokenParam status
        , @OptionalParam(name = Immunization.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = Immunization.SP_RES_ID) StringParam resid
        , @OptionalParam(name= "vaccination-procedure") TokenParam procedureCode
        , @OptionalParam(name= Immunization.SP_NOTGIVEN) TokenParam notGiven
){
    return immunisationDao.search(ctx,patient,date, status, identifier,resid, procedureCode, notGiven);
}