dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #12983
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4078: Added missing methods to deletionhandler
------------------------------------------------------------
revno: 4078
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2011-07-06 09:54:32 +0200
message:
Added missing methods to deletionhandler
modified:
dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.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-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java'
--- dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java 2011-06-30 08:03:19 +0000
+++ dhis-2/dhis-support/dhis-support-system/src/main/java/org/hisp/dhis/system/deletion/DeletionHandler.java 2011-07-06 07:54:32 +0000
@@ -27,6 +27,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+import org.hisp.dhis.caseaggregation.CaseAggregationCondition;
import org.hisp.dhis.chart.Chart;
import org.hisp.dhis.concept.Concept;
import org.hisp.dhis.constant.Constant;
@@ -618,4 +619,13 @@
public void deleteConstant( Constant constant )
{
}
+
+ public boolean allowDeleteCaseAggregationCondition( CaseAggregationCondition caseAggregationCondition )
+ {
+ return true;
+ }
+
+ public void deleteCaseAggregationCondition( CaseAggregationCondition caseAggregationCondition )
+ {
+ }
}