Search in sources :

Example 1 with EbXMLFactory

use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory in project ipf by oehf.

the class RegistryResponseValidatorTest method setUp.

@BeforeEach
public void setUp() {
    validator = new RegistryResponseValidator();
    EbXMLFactory factory = new EbXMLFactory30();
    transformer = new ResponseTransformer(factory);
    response = SampleData.createResponse();
}
Also used : EbXMLFactory30(org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30) ResponseTransformer(org.openehealth.ipf.commons.ihe.xds.core.transform.responses.ResponseTransformer) EbXMLFactory(org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 2 with EbXMLFactory

use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory in project ipf by oehf.

the class RetrieveImagingDocumentSetRequestValidatorTest method setUp.

@BeforeEach
public void setUp() {
    validator = new RetrieveImagingDocumentSetRequestValidator();
    EbXMLFactory factory = new EbXMLFactory30();
    transformer = new RetrieveImagingDocumentSetRequestTransformer(factory);
    request = SampleData.createRetrieveImagingDocumentSet();
}
Also used : EbXMLFactory30(org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30) RetrieveImagingDocumentSetRequestTransformer(org.openehealth.ipf.commons.ihe.xds.core.transform.requests.RetrieveImagingDocumentSetRequestTransformer) EbXMLFactory(org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 3 with EbXMLFactory

use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory in project ipf by oehf.

the class RetrieveImagingDocumentSetRequestTransformerTest method setUp.

@BeforeEach
public void setUp() {
    EbXMLFactory factory = new EbXMLFactory30();
    transformer = new RetrieveImagingDocumentSetRequestTransformer(factory);
    request = SampleData.createRetrieveImagingDocumentSet();
}
Also used : EbXMLFactory30(org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30) RetrieveImagingDocumentSetRequestTransformer(org.openehealth.ipf.commons.ihe.xds.core.transform.requests.RetrieveImagingDocumentSetRequestTransformer) EbXMLFactory(org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory) BeforeEach(org.junit.jupiter.api.BeforeEach)

Example 4 with EbXMLFactory

use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory in project ipf by oehf.

the class ClassificationDisplayNameValidatorTest method createProvideAndRegisterDocumentSetRequest.

private EbXMLProvideAndRegisterDocumentSetRequest createProvideAndRegisterDocumentSetRequest() {
    EbXMLFactory factory = new EbXMLFactory30();
    var request = SampleData.createProvideAndRegisterDocumentSet();
    var transformer = new ProvideAndRegisterDocumentSetTransformer(factory);
    return transformer.toEbXML(request);
}
Also used : EbXMLFactory30(org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30) ProvideAndRegisterDocumentSetTransformer(org.openehealth.ipf.commons.ihe.xds.core.transform.requests.ProvideAndRegisterDocumentSetTransformer) EbXMLFactory(org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory)

Example 5 with EbXMLFactory

use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory in project ipf by oehf.

the class RetrieveDocumentSetRequestTransformerTest method setUp.

@BeforeEach
public void setUp() {
    EbXMLFactory factory = new EbXMLFactory30();
    transformer = new RetrieveDocumentSetRequestTransformer(factory);
    request = SampleData.createRetrieveDocumentSet();
}
Also used : EbXMLFactory30(org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30) RetrieveDocumentSetRequestTransformer(org.openehealth.ipf.commons.ihe.xds.core.transform.requests.RetrieveDocumentSetRequestTransformer) EbXMLFactory(org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory) BeforeEach(org.junit.jupiter.api.BeforeEach)

Aggregations

EbXMLFactory (org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLFactory)10 EbXMLFactory30 (org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30)10 BeforeEach (org.junit.jupiter.api.BeforeEach)9 ProvideAndRegisterDocumentSetTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.requests.ProvideAndRegisterDocumentSetTransformer)2 RetrieveDocumentSetRequestTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.requests.RetrieveDocumentSetRequestTransformer)2 RetrieveImagingDocumentSetRequestTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.requests.RetrieveImagingDocumentSetRequestTransformer)2 RetrieveDocumentSetResponseTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.responses.RetrieveDocumentSetResponseTransformer)2 QueryResponseTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.responses.QueryResponseTransformer)1 ResponseTransformer (org.openehealth.ipf.commons.ihe.xds.core.transform.responses.ResponseTransformer)1