View Javadoc
1   package org.kuali.ole.ncip.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: sheiksalahudeenm
6    * Date: 8/20/13
7    * Time: 5:38 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLEHold {
11      private String itemId;
12      private String itemType;
13      private String catalogueId;
14      private String title;
15      private String author;
16      private String requestId;
17      private String availableStatus;
18      private String recallStatus;
19      private String expiryDate;
20      private String createDate;
21      private String priority;
22      private String type;
23      private String pickupLocation;
24      private String dateRecalled;
25      private String requestType;
26      private String availableDate;
27      private String copyNumber;
28      private String callNumber;
29      private String volumeNumber;
30      private String dateAvailableExpires;
31      private boolean reserve;
32  
33      public String getCopyNumber() {
34          return copyNumber;
35      }
36  
37      public void setCopyNumber(String copyNumber) {
38          this.copyNumber = copyNumber;
39      }
40  
41      public String getCallNumber() {
42          return callNumber;
43      }
44  
45      public void setCallNumber(String callNumber) {
46          this.callNumber = callNumber;
47      }
48  
49      public String getVolumeNumber() {
50          return volumeNumber;
51      }
52  
53      public void setVolumeNumber(String volumeNumber) {
54          this.volumeNumber = volumeNumber;
55      }
56  
57      public String getItemId() {
58          return itemId;
59      }
60  
61      public void setItemId(String itemId) {
62          this.itemId = itemId;
63      }
64  
65      public String getItemType() {
66          return itemType;
67      }
68  
69      public void setItemType(String itemType) {
70          this.itemType = itemType;
71      }
72  
73      public String getRequestId() {
74          return requestId;
75      }
76  
77      public void setRequestId(String requestId) {
78          this.requestId = requestId;
79      }
80  
81      public String getCatalogueId() {
82          return catalogueId;
83      }
84  
85      public void setCatalogueId(String catalogId) {
86          this.catalogueId = catalogId;
87      }
88  
89      public String getExpiryDate() {
90          return expiryDate;
91      }
92  
93      public void setExpiryDate(String expiryDate) {
94          this.expiryDate = expiryDate;
95      }
96  
97      public String getCreateDate() {
98          return createDate;
99      }
100 
101     public void setCreateDate(String createDate) {
102         this.createDate = createDate;
103     }
104 
105     public String getPriority() {
106         return priority;
107     }
108 
109     public void setPriority(String priority) {
110         this.priority = priority;
111     }
112 
113     public String getType() {
114         return type;
115     }
116 
117     public void setType(String type) {
118         this.type = type;
119     }
120 
121     public String getPickupLocation() {
122         return pickupLocation;
123     }
124 
125     public void setPickupLocation(String pickupLocation) {
126         this.pickupLocation = pickupLocation;
127     }
128 
129     public String getDateRecalled() {
130         return dateRecalled;
131     }
132 
133     public void setDateRecalled(String dateRecalled) {
134         this.dateRecalled = dateRecalled;
135     }
136 
137     public String getAvailableStatus() {
138         return availableStatus;
139     }
140 
141     public void setAvailableStatus(String availableStatus) {
142         this.availableStatus = availableStatus;
143     }
144 
145     public String getRecallStatus() {
146         return recallStatus;
147     }
148 
149     public void setRecallStatus(String recallStatus) {
150         this.recallStatus = recallStatus;
151     }
152 
153     public String getRequestType() {
154         return requestType;
155     }
156 
157     public void setRequestType(String requestType) {
158         this.requestType = requestType;
159     }
160 
161     public String getDateAvailableExpires() {
162         return dateAvailableExpires;
163     }
164 
165     public void setDateAvailableExpires(String dateAvailableExpires) {
166         this.dateAvailableExpires = dateAvailableExpires;
167     }
168 
169     public String getAvailableDate() {
170         return availableDate;
171     }
172 
173     public void setAvailableDate(String availableDate) {
174         this.availableDate = availableDate;
175     }
176 
177     public boolean isReserve() {
178         return reserve;
179     }
180 
181     public void setReserve(boolean reserve) {
182         this.reserve = reserve;
183     }
184 
185     public String getTitle() {
186         return title;
187     }
188 
189     public void setTitle(String title) {
190         this.title = title;
191     }
192 
193     public String getAuthor() {
194         return author;
195     }
196 
197     public void setAuthor(String author) {
198         this.author = author;
199     }
200 }