use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30 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();
}
use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30 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();
}
use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30 in project ipf by oehf.
the class XcdrRequestTest method before.
@BeforeEach
public void before() {
validator = new ProvideAndRegisterDocumentSetRequestValidator();
transformer = new ProvideAndRegisterDocumentSetTransformer(new EbXMLFactory30());
}
use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30 in project ipf by oehf.
the class GetSubmissionSetAndContentsQueryTransformerTest method setUp.
@BeforeEach
public void setUp() {
transformer = new GetSubmissionSetAndContentsQueryTransformer();
query = new GetSubmissionSetAndContentsQuery();
query.setUuid("uuid1");
query.setUniqueId("uniqueId1");
query.setHomeCommunityId("home");
var confidentialityCodes = new QueryList<Code>();
confidentialityCodes.getOuterList().add(Arrays.asList(new Code("code10", null, "scheme10"), new Code("code11", null, "scheme11")));
confidentialityCodes.getOuterList().add(Collections.singletonList(new Code("code12", null, "scheme12")));
query.setConfidentialityCodes(confidentialityCodes);
query.setFormatCodes(Arrays.asList(new Code("code13", null, "scheme13"), new Code("code14", null, "scheme14")));
query.setDocumentEntryTypes(Arrays.asList(DocumentEntryType.STABLE, DocumentEntryType.ON_DEMAND));
ebXML = new EbXMLFactory30().createAdhocQueryRequest();
}
use of org.openehealth.ipf.commons.ihe.xds.core.ebxml.ebxml30.EbXMLFactory30 in project ipf by oehf.
the class GetSubmissionSetsQueryTransformerTest method setUp.
@BeforeEach
public void setUp() {
transformer = new GetSubmissionSetsQueryTransformer();
query = new GetSubmissionSetsQuery();
query.setUuids(Arrays.asList("uuid1", "uuid2"));
query.setHomeCommunityId("home");
ebXML = new EbXMLFactory30().createAdhocQueryRequest();
}
Aggregations