View Javadoc

1   package org.kuali.ole.bo.serachRetrieve;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: ?
8    * Date: 7/17/12
9    * Time: 4:02 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleSRUInstanceDocument {
13  
14      public String typeOfRecord;
15      public String encodingLevel;
16      public String format;
17      public String receiptAcqStatus;
18      public String generalRetention;
19      public String completeness;
20      public String dateOfReport;
21      public String nucCode;
22      public String localLocation;
23      public String shelvingLocation;
24      public String callNumber;
25      public String shelvingData;
26      public String copyNumber;
27      public String publicNote;
28      public String reproductionNote;
29      public String termsUseRepro;
30      public String enumAndChron;
31      public List<OleSRUInstanceVolume> volumes;
32      public List<OleSRUCirculationDocument> circulations;
33  
34      public String getTypeOfRecord() {
35          return typeOfRecord;
36      }
37  
38      public void setTypeOfRecord(String typeOfRecord) {
39          this.typeOfRecord = typeOfRecord;
40      }
41  
42      public String getEncodingLevel() {
43          return encodingLevel;
44      }
45  
46      public void setEncodingLevel(String encodingLevel) {
47          this.encodingLevel = encodingLevel;
48      }
49  
50      public String getFormat() {
51          return format;
52      }
53  
54      public void setFormat(String format) {
55          this.format = format;
56      }
57  
58      public String getReceiptAcqStatus() {
59          return receiptAcqStatus;
60      }
61  
62      public void setReceiptAcqStatus(String receiptAcqStatus) {
63          this.receiptAcqStatus = receiptAcqStatus;
64      }
65  
66      public String getGeneralRetention() {
67          return generalRetention;
68      }
69  
70      public void setGeneralRetention(String generalRetention) {
71          this.generalRetention = generalRetention;
72      }
73  
74      public String getCompleteness() {
75          return completeness;
76      }
77  
78      public void setCompleteness(String completeness) {
79          this.completeness = completeness;
80      }
81  
82      public String getDateOfReport() {
83          return dateOfReport;
84      }
85  
86      public void setDateOfReport(String dateOfReport) {
87          this.dateOfReport = dateOfReport;
88      }
89  
90      public String getNucCode() {
91          return nucCode;
92      }
93  
94      public void setNucCode(String nucCode) {
95          this.nucCode = nucCode;
96      }
97  
98      public String getLocalLocation() {
99          return localLocation;
100     }
101 
102     public void setLocalLocation(String localLocation) {
103         this.localLocation = localLocation;
104     }
105 
106     public String getShelvingLocation() {
107         return shelvingLocation;
108     }
109 
110     public void setShelvingLocation(String shelvingLocation) {
111         this.shelvingLocation = shelvingLocation;
112     }
113 
114     public String getCallNumber() {
115         return callNumber;
116     }
117 
118     public void setCallNumber(String callNumber) {
119         this.callNumber = callNumber;
120     }
121 
122     public String getShelvingData() {
123         return shelvingData;
124     }
125 
126     public void setShelvingData(String shelvingData) {
127         this.shelvingData = shelvingData;
128     }
129 
130     public String getCopyNumber() {
131         return copyNumber;
132     }
133 
134     public void setCopyNumber(String copyNumber) {
135         this.copyNumber = copyNumber;
136     }
137 
138     public String getPublicNote() {
139         return publicNote;
140     }
141 
142     public void setPublicNote(String publicNote) {
143         this.publicNote = publicNote;
144     }
145 
146     public String getReproductionNote() {
147         return reproductionNote;
148     }
149 
150     public void setReproductionNote(String reproductionNote) {
151         this.reproductionNote = reproductionNote;
152     }
153 
154     public String getTermsUseRepro() {
155         return termsUseRepro;
156     }
157 
158     public void setTermsUseRepro(String termsUseRepro) {
159         this.termsUseRepro = termsUseRepro;
160     }
161 
162     public String getEnumAndChron() {
163         return enumAndChron;
164     }
165 
166     public void setEnumAndChron(String enumAndChron) {
167         this.enumAndChron = enumAndChron;
168     }
169 
170     public List<OleSRUInstanceVolume> getVolumes() {
171         return volumes;
172     }
173 
174     public void setVolumes(List<OleSRUInstanceVolume> volumes) {
175         this.volumes = volumes;
176     }
177 
178     public List<OleSRUCirculationDocument> getCirculations() {
179         return circulations;
180     }
181 
182     public void setCirculations(List<OleSRUCirculationDocument> circulations) {
183         this.circulations = circulations;
184     }
185 
186     @Override
187     public String toString() {
188         return "typeOfRecord='" + typeOfRecord + '\'' +
189                 ", encodingLevel='" + encodingLevel + '\'' +
190                 ", format='" + format + '\'' +
191                 ", receiptAcqStatus='" + receiptAcqStatus + '\'' +
192                 ", generalRetention='" + generalRetention + '\'' +
193                 ", completeness='" + completeness + '\'' +
194                 ", dateOfReport='" + dateOfReport + '\'' +
195                 ", nucCode='" + nucCode + '\'' +
196                 ", localLocation='" + localLocation + '\'' +
197                 ", shelvingLocation='" + shelvingLocation + '\'' +
198                 ", callNumber='" + callNumber + '\'' +
199                 ", shelvingData='" + shelvingData + '\'' +
200                 ", copyNumber='" + copyNumber + '\'' +
201                 ", publicNote='" + publicNote + '\'' +
202                 ", reproductionNote='" + reproductionNote + '\'' +
203                 ", termsUseRepro='" + termsUseRepro + '\'' +
204                 ", enumAndChron='" + enumAndChron + '\'' +
205                 ", volumes=" + volumes +
206                 ", circulations=" + circulations +
207                 '}';
208     }
209 }