1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 /**
6 * Created with IntelliJ IDEA.
7 * User: ?
8 * Date: 10/16/12
9 * Time: 9:20 AM
10 * To change this template use File | Settings | File Templates.
11 */
12 public class OleCirculationDeskDetail extends PersistableBusinessObjectBase {
13 private String circulationDeskDetailId;
14 private boolean defaultLocation;
15 private boolean allowedLocation;
16 private String operatorId;
17 private String circulationDeskId;
18 private OleCirculationDesk oleCirculationDesk;
19
20 /**
21 * Gets the circulationDeskDetailId attribute.
22 *
23 * @return Returns the circulationDeskDetailId
24 */
25 public String getCirculationDeskDetailId() {
26 return circulationDeskDetailId;
27 }
28
29 /**
30 * Sets the circulationDeskDetailId attribute value.
31 *
32 * @param circulationDeskDetailId The circulationDeskDetailId to set.
33 */
34 public void setCirculationDeskDetailId(String circulationDeskDetailId) {
35 this.circulationDeskDetailId = circulationDeskDetailId;
36 }
37
38 /**
39 * Gets the defaultLocation attribute.
40 *
41 * @return Returns the defaultLocation
42 */
43 public boolean isDefaultLocation() {
44 return defaultLocation;
45 }
46
47 /**
48 * Sets the defaultLocation attribute value.
49 *
50 * @param defaultLocation The defaultLocation to set.
51 */
52 public void setDefaultLocation(boolean defaultLocation) {
53 this.defaultLocation = defaultLocation;
54 }
55
56 /**
57 * Gets the allowedLocation attribute.
58 *
59 * @return Returns the allowedLocation
60 */
61 public boolean isAllowedLocation() {
62 return allowedLocation;
63 }
64
65 /**
66 * Sets the allowedLocation attribute value.
67 *
68 * @param allowedLocation The allowedLocation to set.
69 */
70 public void setAllowedLocation(boolean allowedLocation) {
71 this.allowedLocation = allowedLocation;
72 }
73
74 /**
75 * Gets the circulationDeskId attribute.
76 *
77 * @return Returns the circulationDeskId
78 */
79 public String getCirculationDeskId() {
80 return circulationDeskId;
81 }
82
83 /**
84 * Sets the circulationDeskId attribute value.
85 *
86 * @param circulationDeskId The circulationDeskId to set.
87 */
88 public void setCirculationDeskId(String circulationDeskId) {
89 this.circulationDeskId = circulationDeskId;
90 }
91
92 /**
93 * Gets the operatorId attribute.
94 *
95 * @return Returns the operatorId
96 */
97 public String getOperatorId() {
98 return operatorId;
99 }
100
101 /**
102 * Sets the operatorId attribute value.
103 *
104 * @param operatorId The operatorId to set.
105 */
106 public void setOperatorId(String operatorId) {
107 this.operatorId = operatorId;
108 }
109
110 /**
111 * Gets the instance of OleCirculationDesk
112 *
113 * @return oleCirculationDesk (OleCirculationDesk)
114 */
115 public OleCirculationDesk getOleCirculationDesk() {
116 return oleCirculationDesk;
117 }
118
119 /**
120 * Sets the value for OleCirculationDesk
121 *
122 * @param oleCirculationDesk (OleCirculationDesk)
123 */
124 public void setOleCirculationDesk(OleCirculationDesk oleCirculationDesk) {
125 this.oleCirculationDesk = oleCirculationDesk;
126 }
127 }