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

The following examples show how to use org.hl7.fhir.dstu3.model.DiagnosticReport#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: DiagnosticReportProvider.java    From careconnect-reference-implementation with Apache License 2.0 5 votes vote down vote up
@Search
public List<DiagnosticReport> search(HttpServletRequest theRequest,
                              @OptionalParam(name = DiagnosticReport.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = DiagnosticReport.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = DiagnosticReport.SP_RES_ID) StringParam resid
                              ) {
    return diagnosticReportDao.search(ctx,patient,identifier,resid);
}
 
Example 2
Source File: DiagnosticReportRepository.java    From careconnect-reference-implementation with Apache License 2.0 4 votes vote down vote up
List<DiagnosticReportEntity> searchEntity(FhirContext ctx,
                                     @OptionalParam(name = DiagnosticReport.SP_PATIENT) ReferenceParam patient
        , @OptionalParam(name = DiagnosticReport.SP_IDENTIFIER) TokenParam identifier
        , @OptionalParam(name = DiagnosticReport.SP_RES_ID) StringParam id
);
 
Example 3
Source File: DiagnosticReportRepository.java    From careconnect-reference-implementation with Apache License 2.0 3 votes vote down vote up
List<DiagnosticReport> search(FhirContext ctx,

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

    );