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