Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
08/06/08 17:17:55 (5 months ago)
Author:
mseaton
Message:

synchronization_bidirectional_branch: merge from [4734] to [5181].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/notification/AlertService.java

    r4969 r5183  
    1818 
    1919import org.openmrs.User; 
     20import org.openmrs.annotation.Authorized; 
    2021import org.openmrs.api.APIException; 
    2122import org.openmrs.api.OpenmrsService; 
    2223import org.openmrs.notification.db.AlertDAO; 
     24import org.openmrs.util.OpenmrsConstants; 
    2325import org.springframework.transaction.annotation.Transactional; 
    2426 
     
    5254         * @throws APIException 
    5355         */ 
     56        @Authorized(OpenmrsConstants.PRIV_MANAGE_ALERTS) 
    5457        public Alert saveAlert(Alert alert) throws APIException; 
    5558 
     
    9598         * @throws APIException 
    9699         */ 
     100        @Authorized(OpenmrsConstants.PRIV_MANAGE_ALERTS) 
    97101        public void purgeAlert(Alert alert) throws APIException; 
    98102