View Javadoc

1   package org.kuali.ole.docstore.model.bo;
2   
3   import java.util.List;
4   
5   /**
6    * Created by IntelliJ IDEA.
7    * User: Pranitha
8    * Date: 3/30/12
9    * Time: 10:43 AM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class WorkItemDocument extends OleDocument {
13      private String localId;
14      private String itemIdentifier;
15      private String bibIdentifier;
16      private String callNumber;
17      private String location;
18      private String shelvingOrder;
19      private String barcode;
20      private String copyNumber;
21      private String enumeration;
22      private String chronology;
23      private String locationName;
24      private String itemType;
25      private String instanceIdentifier;
26      private String volumeNumber;
27      private String itemStatus;
28      private String callNumberPrefix;
29      private String callNumberType;
30      private String bibTitle;
31      private String linkedBibCount;
32      private List<String> bibUUIDList;
33      private String staffOnlyFlag;
34      protected String dateEntered;
35      protected String dateUpdated;
36      protected String createdBy;
37      protected String updatedBy;
38  
39      public String getDateEntered() {
40          return dateEntered;
41      }
42  
43      public void setDateEntered(String dateEntered) {
44          this.dateEntered = dateEntered;
45      }
46  
47      public String getDateUpdated() {
48          return dateUpdated;
49      }
50  
51      public void setDateUpdated(String dateUpdated) {
52          this.dateUpdated = dateUpdated;
53      }
54  
55      public String getUpdatedBy() {
56          return updatedBy;
57      }
58  
59      public void setUpdatedBy(String updatedBy) {
60          this.updatedBy = updatedBy;
61      }
62  
63      public String getCreatedBy() {
64          return createdBy;
65      }
66  
67      public void setCreatedBy(String createdBy) {
68          this.createdBy = createdBy;
69      }
70  
71      public String getLocalId() {
72          return localId;
73      }
74  
75      public void setLocalId(String localId) {
76          this.localId = localId;
77      }
78  
79  
80      public String getStaffOnlyFlag() {
81          return staffOnlyFlag;
82      }
83  
84      public void setStaffOnlyFlag(String staffOnlyFlag) {
85          this.staffOnlyFlag = staffOnlyFlag;
86      }
87  
88      public String getLocationName() {
89          return locationName;
90      }
91  
92      public void setLocationName(String locationName) {
93          this.locationName = locationName;
94      }
95  
96      public String getItemType() {
97          return itemType;
98      }
99  
100     public void setItemType(String itemType) {
101         this.itemType = itemType;
102     }
103 
104     public String getVolumeNumber() {
105         return volumeNumber;
106     }
107 
108     public void setVolumeNumber(String volumeNumber) {
109         this.volumeNumber = volumeNumber;
110     }
111 
112     public String getCallNumberPrefix() {
113         return callNumberPrefix;
114     }
115 
116     public void setCallNumberPrefix(String callNumberPrefix) {
117         this.callNumberPrefix = callNumberPrefix;
118     }
119 
120     public String getCallNumberType() {
121         return callNumberType;
122     }
123 
124     public void setCallNumberType(String callNumberType) {
125         this.callNumberType = callNumberType;
126     }
127 
128     public String getItemStatus() {
129         return itemStatus;
130     }
131 
132     public void setItemStatus(String itemStatus) {
133         this.itemStatus = itemStatus;
134     }
135 
136     public String getItemIdentifier() {
137         return itemIdentifier;
138     }
139 
140     public void setItemIdentifier(String itemIdentifier) {
141         this.itemIdentifier = itemIdentifier;
142     }
143 
144     public String getBibIdentifier() {
145         return bibIdentifier;
146     }
147 
148     public void setBibIdentifier(String bibIdentifier) {
149         this.bibIdentifier = bibIdentifier;
150     }
151 
152     public String getCallNumber() {
153         return callNumber;
154     }
155 
156     public void setCallNumber(String callNumber) {
157         this.callNumber = callNumber;
158     }
159 
160     public String getLocation() {
161         return location;
162     }
163 
164     public String getShelvingOrder() {
165         return shelvingOrder;
166     }
167 
168     public void setShelvingOrder(String shelvingOrder) {
169         this.shelvingOrder = shelvingOrder;
170     }
171 
172     public void setLocation(String location) {
173         this.location = location;
174     }
175 
176     public String getBarcode() {
177         return barcode;
178     }
179 
180     public void setBarcode(String barcode) {
181         this.barcode = barcode;
182     }
183 
184     public String getCopyNumber() {
185         return copyNumber;
186     }
187 
188     public void setCopyNumber(String copyNumber) {
189         this.copyNumber = copyNumber;
190     }
191 
192     public String getEnumeration() {
193         return enumeration;
194     }
195 
196     public void setEnumeration(String enumeration) {
197         this.enumeration = enumeration;
198     }
199 
200     public String getChronology() {
201         return chronology;
202     }
203 
204     public void setChronology(String chronology) {
205         this.chronology = chronology;
206     }
207 
208     public String getInstanceIdentifier() {
209         return instanceIdentifier;
210     }
211 
212     public void setInstanceIdentifier(String instanceIdentifier) {
213         this.instanceIdentifier = instanceIdentifier;
214     }
215 
216     public String getBibTitle() {
217         return bibTitle;
218     }
219 
220     public void setBibTitle(String bibTitle) {
221         this.bibTitle = bibTitle;
222     }
223 
224     public String getLinkedBibCount() {
225         return linkedBibCount;
226     }
227 
228     public void setLinkedBibCount(String linkedBibCount) {
229         this.linkedBibCount = linkedBibCount;
230     }
231 
232     public List<String> getBibUUIDList() {
233         return bibUUIDList;
234     }
235 
236     public void setBibUUIDList(List<String> bibUUIDList) {
237         this.bibUUIDList = bibUUIDList;
238     }
239 
240     @Override
241     public String toString() {
242         return "WorkItemDocument{" +
243                 "localId='" + localId + '\'' +
244                 ", dateEntered=" + dateEntered +
245                 ", dateUpdated=" + dateUpdated +
246                 ", createdBy=" + createdBy +
247                 ", updatedBy=" + updatedBy +
248                 ", itemIdentifier='" + itemIdentifier + '\'' +
249                 ", bibIdentifier='" + bibIdentifier + '\'' +
250                 ", callNumber='" + callNumber + '\'' +
251                 ", location='" + location + '\'' +
252                 ", shelvingOrder='" + shelvingOrder + '\'' +
253                 ", barcode='" + barcode + '\'' +
254                 ", copyNumber='" + copyNumber + '\'' +
255                 ", enumeration='" + enumeration + '\'' +
256                 ", chronology='" + chronology + '\'' +
257                 ", locationName='" + locationName + '\'' +
258                 ", itemType='" + itemType + '\'' +
259                 ", instanceIdentifier='" + instanceIdentifier + '\'' +
260                 ", volumeNumber='" + volumeNumber + '\'' +
261                 ", itemStatus='" + itemStatus + '\'' +
262                 ", callNumberPrefix='" + callNumberPrefix + '\'' +
263                 ", callNumberType='" + callNumberType + '\'' +
264                 ", bibTitle='" + bibTitle + '\'' +
265                 ", linkedBibCount='" + linkedBibCount + '\'' +
266                 ", bibUUIDList=" + bibUUIDList +
267                 '}';
268     }
269 }