View Javadoc

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