← Back to team overview

dhis-mobile-devs team mailing list archive

[Branch ~dhis-mobile-devs/dhis-mobile/lwuit-tracking] Rev 196: added downloadFacilityReportUrl variable

 

------------------------------------------------------------
revno: 196
committer: sherylyn.marie
branch nick: lwuit-tracking
timestamp: Tue 2014-03-25 13:20:17 +0800
message:
  added downloadFacilityReportUrl variable
modified:
  src/org/hisp/dhis/mobile/model/OrgUnit.java


--
lp:~dhis-mobile-devs/dhis-mobile/lwuit-tracking
https://code.launchpad.net/~dhis-mobile-devs/dhis-mobile/lwuit-tracking

Your team DHIS mobile developers is subscribed to branch lp:~dhis-mobile-devs/dhis-mobile/lwuit-tracking.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis-mobile-devs/dhis-mobile/lwuit-tracking/+edit-subscription
=== modified file 'src/org/hisp/dhis/mobile/model/OrgUnit.java'
--- src/org/hisp/dhis/mobile/model/OrgUnit.java	2013-11-05 08:47:26 +0000
+++ src/org/hisp/dhis/mobile/model/OrgUnit.java	2014-03-25 05:20:17 +0000
@@ -38,6 +38,8 @@
     private String updateActivityPlanUrl;
 
     private String uploadFacilityReportUrl;
+    
+    private String downloadFacilityReportUrl;
 
     private String uploadActivityReportUrl;
 
@@ -106,6 +108,11 @@
     {
         return uploadFacilityReportUrl;
     }
+    
+    public String getDownloadFacilityReportUrl()
+    {
+        return downloadFacilityReportUrl;
+    }
 
     public String getUploadActivityReportUrl()
     {
@@ -210,6 +217,7 @@
         dataOutputStream.writeUTF( downloadAllUrl );
         dataOutputStream.writeUTF( updateActivityPlanUrl );
         dataOutputStream.writeUTF( uploadFacilityReportUrl );
+        dataOutputStream.writeUTF( downloadFacilityReportUrl );
         dataOutputStream.writeUTF( uploadActivityReportUrl );
         dataOutputStream.writeUTF( updateDataSetsUrl );
         dataOutputStream.writeUTF( changeDataSetLangUrl );
@@ -238,6 +246,7 @@
         downloadAllUrl = dataInputStream.readUTF();
         updateActivityPlanUrl = dataInputStream.readUTF();
         uploadFacilityReportUrl = dataInputStream.readUTF();
+        downloadFacilityReportUrl = dataInputStream.readUTF();
         uploadActivityReportUrl = dataInputStream.readUTF();
         updateDataSetsUrl = dataInputStream.readUTF();
         changeDataSetLangUrl = dataInputStream.readUTF();