├── .editorconfig ├── .github └── workflows │ ├── codeql.yml │ └── maven.yml ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src ├── doc └── xds-to-fhir-registry_integration.png ├── main ├── java │ └── org │ │ └── openehealth │ │ └── app │ │ └── xdstofhir │ │ └── registry │ │ ├── XdsRouteBuilder.java │ │ ├── XdsSpringContext.java │ │ ├── XdsToFhirApplication.java │ │ ├── audit │ │ ├── ATNAEventActuator.java │ │ └── RecentATNAEvents.java │ │ ├── common │ │ ├── MappingSupport.java │ │ ├── PagingFhirResultIterator.java │ │ ├── RegistryConfiguration.java │ │ ├── Wss4jConfigurator.java │ │ ├── fhir │ │ │ ├── MhdFolder.java │ │ │ └── MhdSubmissionSet.java │ │ └── mapper │ │ │ ├── AbstractFhirToXdsMapper.java │ │ │ ├── AbstractXdsToFhirMapper.java │ │ │ ├── FhirToXdsDocumentMapper.java │ │ │ ├── FhirToXdsFolderMapper.java │ │ │ ├── FhirToXdsSubmissionsetMapper.java │ │ │ ├── Hl7ToFhirPatientMapper.java │ │ │ ├── XdsToFhirDocumentMapper.java │ │ │ ├── XdsToFhirFolderMapper.java │ │ │ └── XdsToFhirSubmissionsetMapper.java │ │ ├── patientfeed │ │ ├── Iti8Service.java │ │ └── PatientRegistrationProcessor.java │ │ ├── query │ │ ├── AbstractStoredQueryVisitor.java │ │ ├── Iti18Service.java │ │ ├── StoredQueryMapper.java │ │ ├── StoredQueryProcessor.java │ │ └── StoredQueryVistorImpl.java │ │ ├── register │ │ ├── Iti42Service.java │ │ ├── Iti61Service.java │ │ └── RegisterDocumentsProcessor.java │ │ └── remove │ │ ├── Iti62Service.java │ │ └── RemoveDocumentsProcessor.java └── resources │ ├── META-INF │ ├── additional-spring-configuration-metadata.json │ └── map │ │ ├── codesystem-fhir-translation.map │ │ └── fhir-hl7v2-translation.map │ ├── application.properties │ ├── banner.txt │ ├── profiles │ ├── SearchParameter-List-SourceId.json │ ├── StructureDefinition-IHE.MHD.Comprehensive.DocumentReference.json │ ├── StructureDefinition-IHE.MHD.Comprehensive.Folder.json │ ├── StructureDefinition-IHE.MHD.Comprehensive.ProvideBundle.json │ ├── StructureDefinition-IHE.MHD.Comprehensive.SubmissionSet.json │ ├── StructureDefinition-IHE.MHD.EntryUUID.Identifier.json │ ├── StructureDefinition-IHE.MHD.SubmissionSetUniqueIdIdentifier.json │ ├── StructureDefinition-IHE.MHD.UniqueIdIdentifier.json │ ├── StructureDefinition-ihe-designationType.json │ └── StructureDefinition-ihe-sourceId.json │ └── public │ └── index.html └── test ├── integration └── microsoft-fhir │ └── docker-compose.yaml ├── java └── org │ └── openehealth │ └── app │ └── xdstofhir │ └── registry │ ├── AbstractFhirMockserver.java │ ├── XdsToFhirApplicationIT.java │ ├── XdsToFhirApplicationWebServiceTestIT.java │ ├── common │ └── mapper │ │ ├── DocumentMappingImplTest.java │ │ ├── FhirToXdsSubmissionsetMapperTest.java │ │ └── FolderMappingImplTest.java │ ├── query │ └── StoredQueryVistorImplTest.java │ ├── register │ └── RegisterDocumentsProcessorTest.java │ └── remove │ └── RemoveDocumentsProcessorTest.java └── resources ├── logback.xml └── messages ├── fhir-register-validation-template.json ├── iti-42-invalid-token.xml ├── iti-42.xml ├── minimal-doc.xml └── msg-01.hl7 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/pom.xml -------------------------------------------------------------------------------- /src/doc/xds-to-fhir-registry_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/doc/xds-to-fhir-registry_integration.png -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/XdsRouteBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/XdsRouteBuilder.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/XdsSpringContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/XdsSpringContext.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplication.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/audit/ATNAEventActuator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/audit/ATNAEventActuator.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/audit/RecentATNAEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/audit/RecentATNAEvents.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/MappingSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/MappingSupport.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/PagingFhirResultIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/PagingFhirResultIterator.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/RegistryConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/RegistryConfiguration.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/Wss4jConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/Wss4jConfigurator.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/fhir/MhdFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/fhir/MhdFolder.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/fhir/MhdSubmissionSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/fhir/MhdSubmissionSet.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/AbstractFhirToXdsMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/AbstractFhirToXdsMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/AbstractXdsToFhirMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/AbstractXdsToFhirMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsDocumentMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsDocumentMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsFolderMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsFolderMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsSubmissionsetMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsSubmissionsetMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/Hl7ToFhirPatientMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/Hl7ToFhirPatientMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirDocumentMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirDocumentMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirFolderMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirFolderMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirSubmissionsetMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/common/mapper/XdsToFhirSubmissionsetMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/patientfeed/Iti8Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/patientfeed/Iti8Service.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/patientfeed/PatientRegistrationProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/patientfeed/PatientRegistrationProcessor.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/query/AbstractStoredQueryVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/query/AbstractStoredQueryVisitor.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/query/Iti18Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/query/Iti18Service.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryMapper.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryProcessor.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryVistorImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryVistorImpl.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/register/Iti42Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/register/Iti42Service.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/register/Iti61Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/register/Iti61Service.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/register/RegisterDocumentsProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/register/RegisterDocumentsProcessor.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/remove/Iti62Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/remove/Iti62Service.java -------------------------------------------------------------------------------- /src/main/java/org/openehealth/app/xdstofhir/registry/remove/RemoveDocumentsProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/java/org/openehealth/app/xdstofhir/registry/remove/RemoveDocumentsProcessor.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/additional-spring-configuration-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/META-INF/additional-spring-configuration-metadata.json -------------------------------------------------------------------------------- /src/main/resources/META-INF/map/codesystem-fhir-translation.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/META-INF/map/codesystem-fhir-translation.map -------------------------------------------------------------------------------- /src/main/resources/META-INF/map/fhir-hl7v2-translation.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/META-INF/map/fhir-hl7v2-translation.map -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/profiles/SearchParameter-List-SourceId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/SearchParameter-List-SourceId.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.DocumentReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.DocumentReference.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.Folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.Folder.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.ProvideBundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.ProvideBundle.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.SubmissionSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.Comprehensive.SubmissionSet.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.EntryUUID.Identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.EntryUUID.Identifier.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.SubmissionSetUniqueIdIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.SubmissionSetUniqueIdIdentifier.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-IHE.MHD.UniqueIdIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-IHE.MHD.UniqueIdIdentifier.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-ihe-designationType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-ihe-designationType.json -------------------------------------------------------------------------------- /src/main/resources/profiles/StructureDefinition-ihe-sourceId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/profiles/StructureDefinition-ihe-sourceId.json -------------------------------------------------------------------------------- /src/main/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/main/resources/public/index.html -------------------------------------------------------------------------------- /src/test/integration/microsoft-fhir/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/integration/microsoft-fhir/docker-compose.yaml -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/AbstractFhirMockserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/AbstractFhirMockserver.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplicationIT.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplicationWebServiceTestIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/XdsToFhirApplicationWebServiceTestIT.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/DocumentMappingImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/DocumentMappingImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsSubmissionsetMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/FhirToXdsSubmissionsetMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/FolderMappingImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/common/mapper/FolderMappingImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryVistorImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/query/StoredQueryVistorImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/register/RegisterDocumentsProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/register/RegisterDocumentsProcessorTest.java -------------------------------------------------------------------------------- /src/test/java/org/openehealth/app/xdstofhir/registry/remove/RemoveDocumentsProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/java/org/openehealth/app/xdstofhir/registry/remove/RemoveDocumentsProcessorTest.java -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/resources/messages/fhir-register-validation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/messages/fhir-register-validation-template.json -------------------------------------------------------------------------------- /src/test/resources/messages/iti-42-invalid-token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/messages/iti-42-invalid-token.xml -------------------------------------------------------------------------------- /src/test/resources/messages/iti-42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/messages/iti-42.xml -------------------------------------------------------------------------------- /src/test/resources/messages/minimal-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/messages/minimal-doc.xml -------------------------------------------------------------------------------- /src/test/resources/messages/msg-01.hl7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oehf/xds-registry-to-fhir/HEAD/src/test/resources/messages/msg-01.hl7 --------------------------------------------------------------------------------