001package org.kuali.ole.deliver.form;
002
003import org.kuali.ole.OLEConstants;
004import org.kuali.ole.deliver.bo.OleCirculationDeskDetail;
005import org.kuali.rice.krad.web.form.UifFormBase;
006
007import java.util.List;
008
009/**
010 * Created with IntelliJ IDEA.
011 * User: ?
012 * Date: 10/16/12
013 * Time: 9:23 AM
014 * To change this template use File | Settings | File Templates.
015 */
016public class OleCirculationDeskDetailForm extends UifFormBase {
017
018    private String operatorId;
019    private String roleName = OLEConstants.OleCirculationDeskDetail.OPERATOR_ROLE_NAME;
020    private String roleNamespaceCode = OLEConstants.OleCirculationDeskDetail.OPERATOR_ROLE_NAMESPACE;
021    private String message;
022
023    public String getErrorAuthrisedUserMessage() {
024        return errorAuthrisedUserMessage;
025    }
026
027    public void setErrorAuthrisedUserMessage(String errorAuthrisedUserMessage) {
028        this.errorAuthrisedUserMessage = errorAuthrisedUserMessage;
029    }
030
031    private String errorAuthrisedUserMessage;
032
033
034    private List<OleCirculationDeskDetail> oleCirculationDetailsCreateList;
035
036    /**
037     * Gets the oleCirculationDetailsCreateList attribute
038     *
039     * @return oleCirculationDetailsCreateList
040     */
041    public List<OleCirculationDeskDetail> getOleCirculationDetailsCreateList() {
042        return oleCirculationDetailsCreateList;
043    }
044
045    /**
046     * Sets the oleCirculationDetailsCreateList attribute value.
047     *
048     * @param oleCirculationDetailsCreateList
049     *         The oleCirculationDetailsCreateList to set.
050     */
051    public void setOleCirculationDetailsCreateList(List<OleCirculationDeskDetail> oleCirculationDetailsCreateList) {
052        this.oleCirculationDetailsCreateList = oleCirculationDetailsCreateList;
053    }
054
055    /**
056     * Gets the operatorId attribute.
057     *
058     * @return Returns the operatorId
059     */
060    public String getOperatorId() {
061        return operatorId;
062    }
063
064    /**
065     * Sets the operatorId attribute value.
066     *
067     * @param operatorId The operatorId to set.
068     */
069    public void setOperatorId(String operatorId) {
070        this.operatorId = operatorId;
071    }
072
073    /**
074     * Gets the roleNamespaceCode attribute.
075     *
076     * @return Returns the roleNamespaceCode
077     */
078    public String getRoleNamespaceCode() {
079        return roleNamespaceCode;
080    }
081
082    /**
083     * Sets the roleNamespaceCode attribute value.
084     *
085     * @param roleNamespaceCode The roleNamespaceCode to set.
086     */
087    public void setRoleNamespaceCode(String roleNamespaceCode) {
088        this.roleNamespaceCode = roleNamespaceCode;
089    }
090
091    /**
092     * Gets the roleName attribute.
093     *
094     * @return Returns the roleName
095     */
096    public String getRoleName() {
097        return roleName;
098    }
099
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}