Changeset 5183 for openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/notification/AlertService.java
- Timestamp:
- 08/06/08 17:17:55 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/notification/AlertService.java
r4969 r5183 18 18 19 19 import org.openmrs.User; 20 import org.openmrs.annotation.Authorized; 20 21 import org.openmrs.api.APIException; 21 22 import org.openmrs.api.OpenmrsService; 22 23 import org.openmrs.notification.db.AlertDAO; 24 import org.openmrs.util.OpenmrsConstants; 23 25 import org.springframework.transaction.annotation.Transactional; 24 26 … … 52 54 * @throws APIException 53 55 */ 56 @Authorized(OpenmrsConstants.PRIV_MANAGE_ALERTS) 54 57 public Alert saveAlert(Alert alert) throws APIException; 55 58 … … 95 98 * @throws APIException 96 99 */ 100 @Authorized(OpenmrsConstants.PRIV_MANAGE_ALERTS) 97 101 public void purgeAlert(Alert alert) throws APIException; 98 102