Java Code Examples for org.hl7.fhir.dstu3.model.Condition#SP_RES_ID

The following examples show how to use org.hl7.fhir.dstu3.model.Condition#SP_RES_ID . 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: CompositionRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<CompositionEntity> searchEntity(FhirContext ctx,
          @OptionalParam(name = Composition.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Condition.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = Condition.SP_RES_ID) StringParam id
        , @OptionalParam(name = Composition.SP_TYPE) TokenParam type
        , @OptionalParam(name = Composition.SP_PERIOD)DateRangeParam dateRange
);
 
Example 2
Source File: DocumentReferenceRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<DocumentReferenceEntity> searchEntity(FhirContext ctx,
          @OptionalParam(name = DocumentReference.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Condition.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = Condition.SP_RES_ID) StringParam id
        , @OptionalParam(name = DocumentReference.SP_TYPE) TokenOrListParam type
        , @OptionalParam(name = DocumentReference.SP_PERIOD)DateRangeParam dateRange
        , @OptionalParam(name = DocumentReference.SP_SETTING) TokenParam setting
);
 
Example 3
Source File: ConditionRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<Condition> search(FhirContext ctx,

            @OptionalParam(name = Condition.SP_PATIENT) ReferenceParam patient
            , @OptionalParam(name = Condition.SP_CATEGORY) TokenParam category
            , @OptionalParam(name = Condition.SP_CLINICAL_STATUS) TokenParam clinicalstatus
            , @OptionalParam(name = Condition.SP_ASSERTED_DATE) DateRangeParam asserted
            , @OptionalParam(name = Condition.SP_IDENTIFIER) TokenParam identifier
            ,@OptionalParam(name= Condition.SP_RES_ID) StringParam id

    );
 
Example 4
Source File: ConditionRepository.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
List<ConditionEntity> searchEntity(FhirContext ctx,
        @OptionalParam(name = Condition.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Condition.SP_CATEGORY) TokenParam category
        , @OptionalParam(name = Condition.SP_CLINICAL_STATUS) TokenParam clinicalstatus
        , @OptionalParam(name = Condition.SP_ASSERTED_DATE) DateRangeParam asserted
        , @OptionalParam(name = Condition.SP_IDENTIFIER) TokenParam identifier
        ,@OptionalParam(name= Condition.SP_RES_ID) StringParam id
);
 
Example 5
Source File: ConditionProvider.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
@Search
public List<Condition> search(HttpServletRequest theRequest,
                              @OptionalParam(name = Condition.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = Condition.SP_CATEGORY) TokenParam category
        , @OptionalParam(name = Condition.SP_CLINICAL_STATUS) TokenParam clinicalstatus
        , @OptionalParam(name = Condition.SP_ASSERTED_DATE) DateRangeParam asserted
        , @OptionalParam(name = Condition.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = Condition.SP_RES_ID) StringParam resid
                              ) {
    return conditionDao.search(ctx,patient, category, clinicalstatus, asserted, identifier,resid);
}