use of org.hisp.dhis.web.ohie.csd.domain.GetModificationsResponse 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;
}
Aggregations