View Javadoc
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/3/12
9    * Time: 3:22 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleLoanFastAdd extends PersistableBusinessObjectBase {
13  
14      private String title;
15      private String locationName;
16      private String circulationLocation;
17      private String itemType;
18      private String callNumber;
19      private String callNumberPrefix;
20      private String labelForCopyNumber;
21      private String enumeration;
22      private String checkinNote;
23      private String note;
24      private String shelvingLocation;
25      private String barcode;
26      private String itemStatus;
27      private String callNumberType;
28      private String copyNumber;
29      private String chronology;
30      private String numberOfPieces;
31      private String author;
32  
33      public String getAuthor() {
34          return author;
35      }
36  
37      public void setAuthor(String author) {
38          this.author = author;
39      }
40  
41      public String getNumberOfPieces() {
42          return numberOfPieces;
43      }
44  
45      public void setNumberOfPieces(String numberOfPieces) {
46          this.numberOfPieces = numberOfPieces;
47      }
48  
49      public String getLocationName() {
50          return locationName;
51      }
52  
53      public void setLocationName(String locationName) {
54          this.locationName = locationName;
55      }
56  
57      public String getChronology() {
58          return chronology;
59      }
60  
61      public void setChronology(String chronology) {
62          this.chronology = chronology;
63      }
64  
65      public String getCopyNumber() {
66          return copyNumber;
67      }
68  
69      public void setCopyNumber(String copyNumber) {
70          this.copyNumber = copyNumber;
71      }
72  
73      public String getTitle() {
74          return title;
75      }
76  
77      public void setTitle(String title) {
78          this.title = title;
79      }
80  
81      public String getCirculationLocation() {
82          return circulationLocation;
83      }
84  
85      public void setCirculationLocation(String circulationLocation) {
86          this.circulationLocation = circulationLocation;
87      }
88  
89      public String getItemType() {
90          return itemType;
91      }
92  
93      public void setItemType(String itemType) {
94          this.itemType = itemType;
95      }
96  
97      public String getCallNumber() {
98          return callNumber;
99      }
100 
101     public void setCallNumber(String callNumber) {
102         this.callNumber = callNumber;
103     }
104 
105     public String getLabelForCopyNumber() {
106         return labelForCopyNumber;
107     }
108 
109     public void setLabelForCopyNumber(String labelForCopyNumber) {
110         this.labelForCopyNumber = labelForCopyNumber;
111     }
112 
113     public String getEnumeration() {
114         return enumeration;
115     }
116 
117     public void setEnumeration(String enumeration) {
118         this.enumeration = enumeration;
119     }
120 
121     public String getCheckinNote() {
122         return checkinNote;
123     }
124 
125     public void setCheckinNote(String checkinNote) {
126         this.checkinNote = checkinNote;
127     }
128 
129     public String getNote() {
130         return note;
131     }
132 
133     public void setNote(String note) {
134         this.note = note;
135     }
136 
137     public String getShelvingLocation() {
138         return shelvingLocation;
139     }
140 
141     public void setShelvingLocation(String shelvingLocation) {
142         this.shelvingLocation = shelvingLocation;
143     }
144 
145     public String getBarcode() {
146         return barcode;
147     }
148 
149     public void setBarcode(String barcode) {
150         this.barcode = barcode;
151     }
152 
153     public String getItemStatus() {
154         return itemStatus;
155     }
156 
157     public void setItemStatus(String itemStatus) {
158         this.itemStatus = itemStatus;
159     }
160 
161     public String getCallNumberType() {
162         return callNumberType;
163     }
164 
165     public void setCallNumberType(String callNumberType) {
166         this.callNumberType = callNumberType;
167     }
168 
169     public String getCallNumberPrefix() {
170         return callNumberPrefix;
171     }
172 
173     public void setCallNumberPrefix(String callNumberPrefix) {
174         this.callNumberPrefix = callNumberPrefix;
175     }
176 }