← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13732: csd: made it possible to include Csd in soap envelope

 

------------------------------------------------------------
revno: 13732
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2014-01-15 13:35:09 +0700
message:
  csd: made it possible to include Csd in soap envelope
modified:
  dhis-2/dhis-web/dhis-web-api-fred/src/main/java/org/hisp/dhis/web/csd/domain/Body.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api-fred/src/main/java/org/hisp/dhis/web/csd/domain/Body.java'
--- dhis-2/dhis-web/dhis-web-api-fred/src/main/java/org/hisp/dhis/web/csd/domain/Body.java	2014-01-14 04:02:39 +0000
+++ dhis-2/dhis-web/dhis-web-api-fred/src/main/java/org/hisp/dhis/web/csd/domain/Body.java	2014-01-15 06:35:09 +0000
@@ -28,6 +28,8 @@
  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+import org.hisp.dhis.web.csd.domain.csd.Csd;
+
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlElement;
@@ -43,6 +45,9 @@
     @XmlElement( name = "getModificationsRequest", namespace = "urn:ihe:iti:csd:2013" )
     private GetModificationsRequest getModificationsRequest;
 
+    @XmlElement( name = "CSD", namespace = "urn:ihe:iti:csd:2013" )
+    private Csd csd;
+
     public Body()
     {
     }
@@ -56,4 +61,14 @@
     {
         this.getModificationsRequest = getModificationsRequest;
     }
+
+    public Csd getCsd()
+    {
+        return csd;
+    }
+
+    public void setCsd( Csd csd )
+    {
+        this.csd = csd;
+    }
 }