View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.io.Serializable;
6   import java.sql.Timestamp;
7   import java.util.List;
8   
9   /**
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OLEHoldingsRecord extends PersistableBusinessObjectBase
13          implements Serializable {
14  
15      private String holdingsId;
16      private String bibId;
17      private String holdingsType;
18      private String formerHoldingsId;
19      private String uri;
20      private String location;
21      private String content;
22      private String locationLevel;
23      private String callNumberPrefix;
24      private String callNumber;
25      private String shelvingOrder;
26      private String callNumberTypeId;
27      private String receiptStatusId;
28      private String copyNumber;
29  
30      private String publisherId;
31      private String accessStatus;
32      private String platform;
33      private String imprint;
34      private String localPersistentUri;
35      private boolean allowIll;
36      private String proxiedResource;
37      private Timestamp statusDate;
38      private String eResourceId;
39      private String adminUrl;
40      private String adminUserName;
41      private String adminPassword;
42      private String accessUserName;
43      private String accessPassword;
44      private String subscriptionStatus;
45  //    private String link;
46  //    private String linkText;
47      private String numberSimultaneousUsers;
48      private String authenticationTypeId;
49  
50      private String uniqueIdPrefix;
51      private Boolean staffOnlyFlag;
52      private Timestamp createdDate;
53      private Timestamp updatedDate;
54      private String createdBy;
55      private String updatedBy;
56  
57      private List<OLESerialReceivingDocument> serialReceivingDocuments;
58  
59      public List<OLESerialReceivingDocument> getSerialReceivingDocuments() {
60          return serialReceivingDocuments;
61      }
62  
63      public void setSerialReceivingDocuments(List<OLESerialReceivingDocument> serialReceivingDocuments) {
64          this.serialReceivingDocuments = serialReceivingDocuments;
65      }
66  
67  
68      public String getHoldingsId() {
69          return holdingsId;
70      }
71  
72      public void setHoldingsId(String holdingsId) {
73          this.holdingsId = holdingsId;
74      }
75  
76      public String getBibId() {
77          return bibId;
78      }
79  
80      public void setBibId(String bibId) {
81          this.bibId = bibId;
82      }
83  
84      public String getHoldingsType() {
85          return holdingsType;
86      }
87  
88      public void setHoldingsType(String holdingsType) {
89          this.holdingsType = holdingsType;
90      }
91  
92      public String getFormerHoldingsId() {
93          return formerHoldingsId;
94      }
95  
96      public void setFormerHoldingsId(String formerHoldingsId) {
97          this.formerHoldingsId = formerHoldingsId;
98      }
99  
100     public String getUri() {
101         return uri;
102     }
103 
104     public void setUri(String uri) {
105         this.uri = uri;
106     }
107 
108     public String getLocation() {
109         return location;
110     }
111 
112     public void setLocation(String location) {
113         this.location = location;
114     }
115 
116     public String getContent() {
117         return content;
118     }
119 
120     public void setContent(String content) {
121         this.content = content;
122     }
123 
124     public String getLocationLevel() {
125         return locationLevel;
126     }
127 
128     public void setLocationLevel(String locationLevel) {
129         this.locationLevel = locationLevel;
130     }
131 
132     public String getCallNumberPrefix() {
133         return callNumberPrefix;
134     }
135 
136     public void setCallNumberPrefix(String callNumberPrefix) {
137         this.callNumberPrefix = callNumberPrefix;
138     }
139 
140     public String getCallNumber() {
141         return callNumber;
142     }
143 
144     public void setCallNumber(String callNumber) {
145         this.callNumber = callNumber;
146     }
147 
148     public String getShelvingOrder() {
149         return shelvingOrder;
150     }
151 
152     public void setShelvingOrder(String shelvingOrder) {
153         this.shelvingOrder = shelvingOrder;
154     }
155 
156     public String getCallNumberTypeId() {
157         return callNumberTypeId;
158     }
159 
160     public void setCallNumberTypeId(String callNumberTypeId) {
161         this.callNumberTypeId = callNumberTypeId;
162     }
163 
164     public String getReceiptStatusId() {
165         return receiptStatusId;
166     }
167 
168     public void setReceiptStatusId(String receiptStatusId) {
169         this.receiptStatusId = receiptStatusId;
170     }
171 
172     public String getCopyNumber() {
173         return copyNumber;
174     }
175 
176     public void setCopyNumber(String copyNumber) {
177         this.copyNumber = copyNumber;
178     }
179 
180     public String getPublisherId() {
181         return publisherId;
182     }
183 
184     public void setPublisherId(String publisherId) {
185         this.publisherId = publisherId;
186     }
187 
188     public String getAccessStatus() {
189         return accessStatus;
190     }
191 
192     public void setAccessStatus(String accessStatus) {
193         this.accessStatus = accessStatus;
194     }
195 
196     public String getPlatform() {
197         return platform;
198     }
199 
200     public void setPlatform(String platform) {
201         this.platform = platform;
202     }
203 
204     public String getImprint() {
205         return imprint;
206     }
207 
208     public void setImprint(String imprint) {
209         this.imprint = imprint;
210     }
211 
212     public String getLocalPersistentUri() {
213         return localPersistentUri;
214     }
215 
216     public void setLocalPersistentUri(String localPersistentUri) {
217         this.localPersistentUri = localPersistentUri;
218     }
219 
220     public boolean isAllowIll() {
221         return allowIll;
222     }
223 
224     public void setAllowIll(boolean allowIll) {
225         this.allowIll = allowIll;
226     }
227 
228     public String getProxiedResource() {
229         return proxiedResource;
230     }
231 
232     public void setProxiedResource(String proxiedResource) {
233         this.proxiedResource = proxiedResource;
234     }
235 
236     public Timestamp getStatusDate() {
237         return statusDate;
238     }
239 
240     public void setStatusDate(Timestamp statusDate) {
241         this.statusDate = statusDate;
242     }
243 
244     public String geteResourceId() {
245         return eResourceId;
246     }
247 
248     public void seteResourceId(String eResourceId) {
249         this.eResourceId = eResourceId;
250     }
251 
252     public String getAdminUrl() {
253         return adminUrl;
254     }
255 
256     public void setAdminUrl(String adminUrl) {
257         this.adminUrl = adminUrl;
258     }
259 
260     public String getAdminUserName() {
261         return adminUserName;
262     }
263 
264     public void setAdminUserName(String adminUserName) {
265         this.adminUserName = adminUserName;
266     }
267 
268     public String getAdminPassword() {
269         return adminPassword;
270     }
271 
272     public void setAdminPassword(String adminPassword) {
273         this.adminPassword = adminPassword;
274     }
275 
276     public String getAccessUserName() {
277         return accessUserName;
278     }
279 
280     public void setAccessUserName(String accessUserName) {
281         this.accessUserName = accessUserName;
282     }
283 
284     public String getAccessPassword() {
285         return accessPassword;
286     }
287 
288     public void setAccessPassword(String accessPassword) {
289         this.accessPassword = accessPassword;
290     }
291 
292     public String getSubscriptionStatus() {
293         return subscriptionStatus;
294     }
295 
296     public void setSubscriptionStatus(String subscriptionStatus) {
297         this.subscriptionStatus = subscriptionStatus;
298     }
299 
300     public String getNumberSimultaneousUsers() {
301         return numberSimultaneousUsers;
302     }
303 
304     public void setNumberSimultaneousUsers(String numberSimultaneousUsers) {
305         this.numberSimultaneousUsers = numberSimultaneousUsers;
306     }
307 
308     public String getAuthenticationTypeId() {
309         return authenticationTypeId;
310     }
311 
312     public void setAuthenticationTypeId(String authenticationTypeId) {
313         this.authenticationTypeId = authenticationTypeId;
314     }
315 
316     public String getUniqueIdPrefix() {
317         return uniqueIdPrefix;
318     }
319 
320     public void setUniqueIdPrefix(String uniqueIdPrefix) {
321         this.uniqueIdPrefix = uniqueIdPrefix;
322     }
323 
324     public Boolean getStaffOnlyFlag() {
325         return staffOnlyFlag;
326     }
327 
328     public void setStaffOnlyFlag(Boolean staffOnlyFlag) {
329         this.staffOnlyFlag = staffOnlyFlag;
330     }
331 
332     public Timestamp getCreatedDate() {
333         return createdDate;
334     }
335 
336     public void setCreatedDate(Timestamp createdDate) {
337         this.createdDate = createdDate;
338     }
339 
340     public Timestamp getUpdatedDate() {
341         return updatedDate;
342     }
343 
344     public void setUpdatedDate(Timestamp updatedDate) {
345         this.updatedDate = updatedDate;
346     }
347 
348     public String getCreatedBy() {
349         return createdBy;
350     }
351 
352     public void setCreatedBy(String createdBy) {
353         this.createdBy = createdBy;
354     }
355 
356     public String getUpdatedBy() {
357         return updatedBy;
358     }
359 
360     public void setUpdatedBy(String updatedBy) {
361         this.updatedBy = updatedBy;
362     }
363 }