001 package org.kuali.ole.bo.serachRetrieve;
002
003 import java.util.List;
004
005 /**
006 * Created with IntelliJ IDEA.
007 * User: ?
008 * Date: 7/17/12
009 * Time: 4:02 PM
010 * To change this template use File | Settings | File Templates.
011 */
012 public class OleSRUInstanceDocument {
013
014 public String typeOfRecord;
015 public String encodingLevel;
016 public String format;
017 public String receiptAcqStatus;
018 public String generalRetention;
019 public String completeness;
020 public String dateOfReport;
021 public String nucCode;
022 public String localLocation;
023 public String shelvingLocation;
024 public String callNumber;
025 public String shelvingData;
026 public String copyNumber;
027 public String publicNote;
028 public String reproductionNote;
029 public String termsUseRepro;
030 public String enumAndChron;
031 public List<OleSRUInstanceVolume> volumes;
032 public List<OleSRUCirculationDocument> circulations;
033
034 public String getTypeOfRecord() {
035 return typeOfRecord;
036 }
037
038 public void setTypeOfRecord(String typeOfRecord) {
039 this.typeOfRecord = typeOfRecord;
040 }
041
042 public String getEncodingLevel() {
043 return encodingLevel;
044 }
045
046 public void setEncodingLevel(String encodingLevel) {
047 this.encodingLevel = encodingLevel;
048 }
049
050 public String getFormat() {
051 return format;
052 }
053
054 public void setFormat(String format) {
055 this.format = format;
056 }
057
058 public String getReceiptAcqStatus() {
059 return receiptAcqStatus;
060 }
061
062 public void setReceiptAcqStatus(String receiptAcqStatus) {
063 this.receiptAcqStatus = receiptAcqStatus;
064 }
065
066 public String getGeneralRetention() {
067 return generalRetention;
068 }
069
070 public void setGeneralRetention(String generalRetention) {
071 this.generalRetention = generalRetention;
072 }
073
074 public String getCompleteness() {
075 return completeness;
076 }
077
078 public void setCompleteness(String completeness) {
079 this.completeness = completeness;
080 }
081
082 public String getDateOfReport() {
083 return dateOfReport;
084 }
085
086 public void setDateOfReport(String dateOfReport) {
087 this.dateOfReport = dateOfReport;
088 }
089
090 public String getNucCode() {
091 return nucCode;
092 }
093
094 public void setNucCode(String nucCode) {
095 this.nucCode = nucCode;
096 }
097
098 public String getLocalLocation() {
099 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 }