View Javadoc
1   package org.kuali.ole.alert.form;
2   
3   import org.kuali.ole.alert.bo.ActionListAlertBo;
4   import org.kuali.rice.krad.web.form.UifFormBase;
5   
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * Created by maheswarang on 11/4/14.
11   */
12  
13  /**
14   * This is the form for the alert view in the action list
15   */
16  public class AlertForm extends UifFormBase {
17  
18      public List<ActionListAlertBo> actionListAlertList = new ArrayList<>();
19  
20      public List<ActionListAlertBo> getActionListAlertList() {
21          return actionListAlertList;
22      }
23  
24      public void setActionListAlertList(List<ActionListAlertBo> actionListAlertList) {
25          this.actionListAlertList = actionListAlertList;
26      }
27  }