View Javadoc

1   package org.kuali.ole.deliver.form;
2   
3   import org.kuali.ole.OLEConstants;
4   import org.kuali.ole.deliver.bo.OleCirculationDeskDetail;
5   import org.kuali.rice.krad.web.form.UifFormBase;
6   
7   import java.util.List;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: ?
12   * Date: 10/16/12
13   * Time: 9:23 AM
14   * To change this template use File | Settings | File Templates.
15   */
16  public class OleCirculationDeskDetailForm extends UifFormBase {
17  
18      private String operatorId;
19      private String roleName = OLEConstants.OleCirculationDeskDetail.OPERATOR_ROLE_NAME;
20      private String roleNamespaceCode = OLEConstants.OleCirculationDeskDetail.OPERATOR_ROLE_NAMESPACE;
21      private String message;
22  
23      public String getErrorAuthrisedUserMessage() {
24          return errorAuthrisedUserMessage;
25      }
26  
27      public void setErrorAuthrisedUserMessage(String errorAuthrisedUserMessage) {
28          this.errorAuthrisedUserMessage = errorAuthrisedUserMessage;
29      }
30  
31      private String errorAuthrisedUserMessage;
32  
33  
34      private List<OleCirculationDeskDetail> oleCirculationDetailsCreateList;
35  
36      /**
37       * Gets the oleCirculationDetailsCreateList attribute
38       *
39       * @return oleCirculationDetailsCreateList
40       */
41      public List<OleCirculationDeskDetail> getOleCirculationDetailsCreateList() {
42          return oleCirculationDetailsCreateList;
43      }
44  
45      /**
46       * Sets the oleCirculationDetailsCreateList attribute value.
47       *
48       * @param oleCirculationDetailsCreateList
49       *         The oleCirculationDetailsCreateList to set.
50       */
51      public void setOleCirculationDetailsCreateList(List<OleCirculationDeskDetail> oleCirculationDetailsCreateList) {
52          this.oleCirculationDetailsCreateList = oleCirculationDetailsCreateList;
53      }
54  
55      /**
56       * Gets the operatorId attribute.
57       *
58       * @return Returns the operatorId
59       */
60      public String getOperatorId() {
61          return operatorId;
62      }
63  
64      /**
65       * Sets the operatorId attribute value.
66       *
67       * @param operatorId The operatorId to set.
68       */
69      public void setOperatorId(String operatorId) {
70          this.operatorId = operatorId;
71      }
72  
73      /**
74       * Gets the roleNamespaceCode attribute.
75       *
76       * @return Returns the roleNamespaceCode
77       */
78      public String getRoleNamespaceCode() {
79          return roleNamespaceCode;
80      }
81  
82      /**
83       * Sets the roleNamespaceCode attribute value.
84       *
85       * @param roleNamespaceCode The roleNamespaceCode to set.
86       */
87      public void setRoleNamespaceCode(String roleNamespaceCode) {
88          this.roleNamespaceCode = roleNamespaceCode;
89      }
90  
91      /**
92       * Gets the roleName attribute.
93       *
94       * @return Returns the roleName
95       */
96      public String getRoleName() {
97          return roleName;
98      }
99  
100     /**
101      * Sets the roleName attribute value.
102      *
103      * @param roleName The roleName to set.
104      */
105     public void setRoleName(String roleName) {
106         this.roleName = roleName;
107     }
108 
109     /**
110      * Gets the message attribute.
111      *
112      * @return Returns the message
113      */
114     public String getMessage() {
115         return message;
116     }
117 
118     /**
119      * Sets the message attribute value.
120      *
121      * @param message The message to set.
122      */
123     public void setMessage(String message) {
124         this.message = message;
125     }
126 }