use of org.openehealth.ipf.commons.ihe.xds.core.transform.requests.query.GetSubmissionSetsQueryTransformer 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