View Javadoc

1   /*
2    * Copyright 2011 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.kuali.ole.select.businessobject;
18  
19  import org.kuali.rice.krad.bo.BusinessObjectBase;
20  
21  import java.util.ArrayList;
22  import java.util.LinkedHashMap;
23  import java.util.List;
24  
25  public class DocInfoBean extends BusinessObjectBase {
26  
27      //private String author;
28      private String author_display;
29  
30      private String dateOfPublication;
31  
32      private String date_d;
33  
34      private List<String> descriptionList;
35  
36      //private String description;
37      private String description_display;
38  
39      private String dimentions;
40  
41      private String docType;
42  
43      private String extent;
44  
45      private String generalNote;
46  
47      private List<String> isbnList;
48  
49      //private String isbn;
50      private String isbn_display;
51  
52      private String mainEntryPersonalNameComposite;
53  
54      private String mainEntryPersonalNameComposite_suggest;
55  
56      private String modifyingAgency;
57  
58      private String modifyingAgency_suggest;
59  
60      //private String nameOfPublisher;
61      private String publisher_display;
62  
63      //private String placeOfPublication;
64      private String publicationPlace_search;
65  
66      private String placeOfPublication_suggest;
67  
68      private String price_f;
69  
70      private String remainderOfTitle;
71  
72      private String statementOfResponsibility;
73  
74      private List<String> subjectList;
75  
76      //private String subject;
77      private String subject_display;
78  
79      //private String title;
80      private String title_display;
81  
82      private String titleStatementComposite;
83  
84      private String title_suggest;
85  
86      private String topicalTermorgeographicnameElement;
87  
88      private String yearOfPublication;
89  
90      private List<String> all_controlFieldsList;
91  
92      private String all_controlFields;
93  
94      private List<String> all_subfieldsList;
95  
96      private String all_subfields;
97  
98      private List<String> all_textList;
99  
100     private String all_text;
101 
102     //private String id;
103     private String titleId;
104 
105     private String uniqueId;
106 
107     private String noOfRecords;
108 
109     private String bibIdentifier;
110 
111     private String publisher_search;
112 
113     private String localIdentifier_search;
114 
115     private String publicationDate_search;
116 
117 
118     public DocInfoBean() {
119         all_textList = new ArrayList<String>();
120         all_subfieldsList = new ArrayList<String>();
121         all_controlFieldsList = new ArrayList<String>();
122         subjectList = new ArrayList<String>();
123         isbnList = new ArrayList<String>();
124         descriptionList = new ArrayList<String>();
125 
126     }
127     
128 /*    public String getAuthor() {
129         return author;
130     }
131 
132     public void setAuthor(String author) {
133         this.author = author;
134     }*/
135 
136     public String getAuthor_display() {
137         return author_display;
138     }
139 
140     public void setAuthor_display(String author_display) {
141         this.author_display = author_display;
142     }
143 
144     public String getDateOfPublication() {
145         return dateOfPublication;
146     }
147 
148     public void setDateOfPublication(String dateOfPublication) {
149         this.dateOfPublication = dateOfPublication;
150     }
151 
152     public String getDate_d() {
153         return date_d;
154     }
155 
156     public void setDate_d(String date_d) {
157         this.date_d = date_d;
158     }
159 
160     public String getDimentions() {
161         return dimentions;
162     }
163 
164     public void setDimentions(String dimentions) {
165         this.dimentions = dimentions;
166     }
167 
168     public String getDocType() {
169         return docType;
170     }
171 
172     public void setDocType(String docType) {
173         this.docType = docType;
174     }
175 
176     public String getExtent() {
177         return extent;
178     }
179 
180     public void setExtent(String extent) {
181         this.extent = extent;
182     }
183 
184     public String getGeneralNote() {
185         return generalNote;
186     }
187 
188     public void setGeneralNote(String generalNote) {
189         this.generalNote = generalNote;
190     }
191 
192     public String getMainEntryPersonalNameComposite() {
193         return mainEntryPersonalNameComposite;
194     }
195 
196     public void setMainEntryPersonalNameComposite(String mainEntryPersonalNameComposite) {
197         this.mainEntryPersonalNameComposite = mainEntryPersonalNameComposite;
198     }
199 
200     public String getMainEntryPersonalNameComposite_suggest() {
201         return mainEntryPersonalNameComposite_suggest;
202     }
203 
204     public void setMainEntryPersonalNameComposite_suggest(String mainEntryPersonalNameComposite_suggest) {
205         this.mainEntryPersonalNameComposite_suggest = mainEntryPersonalNameComposite_suggest;
206     }
207 
208     public String getModifyingAgency() {
209         return modifyingAgency;
210     }
211 
212     public void setModifyingAgency(String modifyingAgency) {
213         this.modifyingAgency = modifyingAgency;
214     }
215 
216     public String getModifyingAgency_suggest() {
217         return modifyingAgency_suggest;
218     }
219 
220     public void setModifyingAgency_suggest(String modifyingAgency_suggest) {
221         this.modifyingAgency_suggest = modifyingAgency_suggest;
222     }
223 
224 /*    public String getNameOfPublisher() {
225         return nameOfPublisher;
226     }
227 
228     public void setNameOfPublisher(String nameOfPublisher) {
229         this.nameOfPublisher = nameOfPublisher;
230     }
231 
232     public String getPlaceOfPublication() {
233         return placeOfPublication;
234     }
235 
236     public void setPlaceOfPublication(String placeOfPublication) {
237         this.placeOfPublication = placeOfPublication;
238     }*/
239 
240     public String getPlaceOfPublication_suggest() {
241         return placeOfPublication_suggest;
242     }
243 
244     public String getPublisher_display() {
245         return publisher_display;
246     }
247 
248     public void setPublisher_display(String publisher_display) {
249         this.publisher_display = publisher_display;
250     }
251 
252     public String getPublicationPlace_search() {
253         return publicationPlace_search;
254     }
255 
256     public void setPublicationPlace_search(String publicationPlace_search) {
257         this.publicationPlace_search = publicationPlace_search;
258     }
259 
260     public void setPlaceOfPublication_suggest(String placeOfPublication_suggest) {
261         this.placeOfPublication_suggest = placeOfPublication_suggest;
262     }
263 
264     public String getPrice_f() {
265         return price_f;
266     }
267 
268     public void setPrice_f(String price_f) {
269         this.price_f = price_f;
270     }
271 
272     public String getRemainderOfTitle() {
273         return remainderOfTitle;
274     }
275 
276     public void setRemainderOfTitle(String remainderOfTitle) {
277         this.remainderOfTitle = remainderOfTitle;
278     }
279 
280     public String getStatementOfResponsibility() {
281         return statementOfResponsibility;
282     }
283 
284     public void setStatementOfResponsibility(String statementOfResponsibility) {
285         this.statementOfResponsibility = statementOfResponsibility;
286     }
287 
288 /*    public String getTitle() {
289         return title;
290     }
291 
292     public void setTitle(String title) {
293         this.title = title;
294     }*/
295 
296     public String getTitle_display() {
297         return title_display;
298     }
299 
300     public void setTitle_display(String title_display) {
301         this.title_display = title_display;
302     }
303 
304     public String getTitleStatementComposite() {
305         return titleStatementComposite;
306     }
307 
308     public void setTitleStatementComposite(String titleStatementComposite) {
309         this.titleStatementComposite = titleStatementComposite;
310     }
311 
312     public String getTitle_suggest() {
313         return title_suggest;
314     }
315 
316     public void setTitle_suggest(String title_suggest) {
317         this.title_suggest = title_suggest;
318     }
319 
320     public String getTopicalTermorgeographicnameElement() {
321         return topicalTermorgeographicnameElement;
322     }
323 
324     public void setTopicalTermorgeographicnameElement(String topicalTermorgeographicnameElement) {
325         this.topicalTermorgeographicnameElement = topicalTermorgeographicnameElement;
326     }
327 
328     public String getYearOfPublication() {
329         return yearOfPublication;
330     }
331 
332     public void setYearOfPublication(String yearOfPublication) {
333         this.yearOfPublication = yearOfPublication;
334     }
335 
336     /*   public String getId() {
337             return id;
338         }*/
339     public String getTitleId() {
340         return titleId;
341     }
342 
343     public void setTitleId(String titleId) {
344         this.titleId = titleId;
345     }
346 
347     public List<String> getDescriptionList() {
348         return descriptionList;
349     }
350 
351     public void setDescriptionList(List<String> descriptionList) {
352         this.descriptionList = descriptionList;
353     }
354 
355 /*    public String getDescription() {
356         return description;
357     }
358 
359     public void setDescription(String description) {
360         this.description = description;
361         this.descriptionList.add(description);
362     }*/
363 
364     public String getDescription_display() {
365         return description_display;
366     }
367 
368     public void setDescription_display(String description_display) {
369         this.description_display = description_display;
370         this.descriptionList.add(description_display);
371     }
372 
373     public List<String> getIsbnList() {
374         return isbnList;
375     }
376 
377     public void setIsbnList(List<String> isbnList) {
378         this.isbnList = isbnList;
379     }
380 
381     /*    public String getIsbn() {
382             return isbn;
383         }
384 
385         public void setIsbn(String isbn) {
386             this.isbn = isbn;
387             this.isbnList.add(isbn);
388         }
389     */
390     public String getIsbn_display() {
391         return isbn_display;
392     }
393 
394     public void setIsbn_display(String isbn_display) {
395         this.isbn_display = isbn_display;
396         this.isbnList.add(isbn_display);
397     }
398 
399     public List<String> getSubjectList() {
400         return subjectList;
401     }
402 
403     public void setSubjectList(List<String> subjectList) {
404         this.subjectList = subjectList;
405     }
406 
407 /*public String getSubject() {
408     return subject;
409 }
410 
411 public void setSubject(String subject) {
412 	this.subject = subject;
413 	this.subjectList.add(subject);
414 }*/
415 
416     public String getSubject_display() {
417         return subject_display;
418     }
419 
420     public void setSubject_display(String subject_display) {
421         this.subject_display = subject_display;
422         this.subjectList.add(subject_display);
423     }
424 
425     public List<String> getAll_controlFieldsList() {
426         return all_controlFieldsList;
427     }
428 
429     public void setAll_controlFieldsList(List<String> all_controlFieldsList) {
430         this.all_controlFieldsList = all_controlFieldsList;
431     }
432 
433     public String getAll_controlFields() {
434         return all_controlFields;
435     }
436 
437     public void setAll_controlFields(String all_controlFields) {
438         this.all_controlFields = all_controlFields;
439         this.all_controlFieldsList.add(all_controlFields);
440     }
441 
442     public List<String> getAll_subfieldsList() {
443         return all_subfieldsList;
444     }
445 
446     public void setAll_subfieldsList(List<String> all_subfieldsList) {
447         this.all_subfieldsList = all_subfieldsList;
448     }
449 
450     public String getAll_subfields() {
451         return all_subfields;
452     }
453 
454     public void setAll_subfields(String all_subfields) {
455         this.all_subfields = all_subfields;
456         this.all_subfieldsList.add(all_subfields);
457     }
458 
459     public List<String> getAll_textList() {
460         return all_textList;
461     }
462 
463     public void setAll_textList(List<String> all_textList) {
464         this.all_textList = all_textList;
465     }
466 
467     public String getAll_text() {
468         return all_text;
469     }
470 
471     public void setAll_text(String all_text) {
472         this.all_text = all_text;
473         this.all_textList.add(all_text);
474     }
475 
476 /*public void setId(String id) {
477     this.id = id;
478  }*/
479 
480     public String getUniqueId() {
481         return uniqueId;
482     }
483 
484     public void setUniqueId(String uniqueId) {
485         this.uniqueId = uniqueId;
486     }
487 
488     protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
489         // TODO Auto-generated method stub
490         return null;
491     }
492 
493     public void refresh() {
494         // TODO Auto-generated method stub
495 
496     }
497 
498     public String getNoOfRecords() {
499         return noOfRecords;
500     }
501 
502     public void setNoOfRecords(String noOfRecords) {
503         this.noOfRecords = noOfRecords;
504     }
505 
506     public String getBibIdentifier() {
507         return bibIdentifier;
508     }
509 
510     public void setBibIdentifier(String bibIdentifier) {
511         this.bibIdentifier = bibIdentifier;
512     }
513 
514     public String getPublicationDate_search() {
515         return publicationDate_search;
516     }
517 
518     public void setPublicationDate_search(String publicationDate_search) {
519         this.publicationDate_search = publicationDate_search;
520     }
521 
522     public String getPublisher_search() {
523         return publisher_search;
524     }
525 
526     public void setPublisher_search(String publisher_search) {
527         this.publisher_search = publisher_search;
528     }
529 
530     public String getLocalIdentifier_search() {
531         return localIdentifier_search;
532     }
533 
534     public void setLocalIdentifier_search(String localIdentifier_search) {
535         this.localIdentifier_search = localIdentifier_search;
536     }
537 }