1 package org.kuali.ole.alert.service; 2 3 import org.kuali.ole.alert.bo.ActionListAlertBo; 4 5 import java.util.List; 6 7 /** 8 * Created by maheswarang on 11/4/14. 9 */ 10 11 /** 12 * This service is defined for processing the alerts in the action list 13 */ 14 public interface AlertHelperService { 15 public List<ActionListAlertBo> getActionListAlertsByUserId(String userId); 16 public void approveActionListAlert(ActionListAlertBo actionListAlertBo); 17 }