=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/interpretation/InterpretationService.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/interpretation/InterpretationService.java 2012-05-29 21:23:47 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/interpretation/InterpretationService.java 2012-05-30 09:51:59 +0000 @@ -40,6 +40,8 @@ Interpretation getInterpretation( String uid ); + void updateInterpretation( Interpretation interpretation ); + void deleteInterpretation( Interpretation interpretation ); List getInterpretations( int first, int max ); === modified file 'dhis-2/dhis-services/dhis-service-reporting/src/main/java/org/hisp/dhis/interpretation/impl/DefaultInterpretationService.java' --- dhis-2/dhis-services/dhis-service-reporting/src/main/java/org/hisp/dhis/interpretation/impl/DefaultInterpretationService.java 2012-05-29 21:23:47 +0000 +++ dhis-2/dhis-services/dhis-service-reporting/src/main/java/org/hisp/dhis/interpretation/impl/DefaultInterpretationService.java 2012-05-30 09:51:59 +0000 @@ -98,6 +98,11 @@ return interpretationStore.getByUid( uid ); } + public void updateInterpretation( Interpretation interpretation ) + { + interpretationStore.update( interpretation ); + } + public void deleteInterpretation( Interpretation interpretation ) { interpretationStore.delete( interpretation );