Search in sources :

Example 1 with RelatesTo

use of org.hisp.dhis.web.ohie.common.domain.wsa.RelatesTo in project dhis2-core by dhis2.

the class CsdController method createResponse.

public Envelope createResponse(Csd csd, String messageID) {
    Envelope envelope = new Envelope();
    envelope.getHeader().getAction().setValue("urn:ihe:iti:csd:2013:GetDirectoryModificationsResponse");
    envelope.getHeader().setRelatesTo(new RelatesTo(messageID));
    GetModificationsResponse response = new GetModificationsResponse(csd);
    envelope.getBody().setGetModificationsResponse(response);
    return envelope;
}
Also used : GetModificationsResponse(org.hisp.dhis.web.ohie.csd.domain.GetModificationsResponse) Envelope(org.hisp.dhis.web.ohie.common.domain.soap.Envelope) RelatesTo(org.hisp.dhis.web.ohie.common.domain.wsa.RelatesTo)

Aggregations

Envelope (org.hisp.dhis.web.ohie.common.domain.soap.Envelope)1 RelatesTo (org.hisp.dhis.web.ohie.common.domain.wsa.RelatesTo)1 GetModificationsResponse (org.hisp.dhis.web.ohie.csd.domain.GetModificationsResponse)1