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  package org.kuali.ole.select.lookup;
17  
18  import org.kuali.rice.krad.bo.BusinessObjectBase;
19  
20  import java.util.LinkedHashMap;
21  
22  public class DocData extends BusinessObjectBase implements DocStoreData {
23  
24      private String author;
25      private String isbn;
26      private String localIdentifier;
27      private String titleId;
28      private String uniqueId;
29      private String bibIdentifier;
30  
31      public String getIsbn() {
32          return isbn;
33      }
34  
35      public void setIsbn(String isbn) {
36          this.isbn = isbn;
37      }
38  
39      public String getPublisher() {
40          return publisher;
41      }
42  
43      public void setPublisher(String publisher) {
44          this.publisher = publisher;
45      }
46  
47      public String getLocalIdentifier() {
48          return localIdentifier;
49      }
50  
51      public void setLocalIdentifier(String localIdentifier) {
52          this.localIdentifier = localIdentifier;
53      }
54  
55      private String publisher;
56  
57      public String getAuthor() {
58          return author;
59      }
60  
61      public String getTitleId() {
62          return titleId;
63      }
64  
65      public void setTitleId(String titleId) {
66          this.titleId = titleId;
67      }
68  
69      public String getBibIdentifier() {
70          return bibIdentifier;
71      }
72  
73      public void setBibIdentifier(String bibIdentifier) {
74          this.bibIdentifier = bibIdentifier;
75      }
76  
77      public DocData() {
78      }
79  
80      public DocData(String author, String title, String isbn, String publisher, String placeOfPulication, String publicationDate, String format, String price, String titleId, String uniqueId, String bibIdentifier) {
81          this.author = author;
82          this.title = title;
83          this.isbn = isbn;
84          this.publisher = publisher;
85          this.placeOfPublication = placeOfPulication;
86          this.publicationDate = publicationDate;
87          this.format = format;
88          this.price = price;
89          this.titleId = titleId;
90          this.uniqueId = uniqueId;
91          this.bibIdentifier = bibIdentifier;
92  
93      }
94  
95      public DocData(String author, String title, String isbn, String localIdentifier, String publisher, String placeOfPulication, String publicationDate, String format, String price, String titleId, String uniqueId, String bibIdentifier) {
96          this.author = author;
97          this.title = title;
98          this.isbn = isbn;
99          this.localIdentifier = localIdentifier;
100         this.publisher = publisher;
101         this.placeOfPublication = placeOfPulication;
102         this.publicationDate = publicationDate;
103         this.format = format;
104         this.price = price;
105         this.titleId = titleId;
106         this.uniqueId = uniqueId;
107         this.bibIdentifier = bibIdentifier;
108 
109     }
110 
111     public void setAuthor(String author) {
112         this.author = author;
113     }
114 
115     public String getTitle() {
116         return title;
117     }
118 
119     public void setTitle(String title) {
120         this.title = title;
121     }
122 
123     private String title;
124 
125 
126     protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
127         // TODO Auto-generated method stub
128         return null;
129     }
130 
131     public void refresh() {
132         // TODO Auto-generated method stub
133 
134     }
135 
136     private String placeOfPublication;
137     private String publicationDate;
138     private String format;
139     private String price;
140 
141     public String getPlaceOfPublication() {
142         return placeOfPublication;
143     }
144 
145     public void setPlaceOfPublication(String placeOfPublication) {
146         this.placeOfPublication = placeOfPublication;
147     }
148 
149     public String getPublicationDate() {
150         return publicationDate;
151     }
152 
153     public void setPublicationDate(String publicationDate) {
154         this.publicationDate = publicationDate;
155     }
156 
157     public String getFormat() {
158         return format;
159     }
160 
161     public void setFormat(String format) {
162         this.format = format;
163     }
164 
165     public String getPrice() {
166         return price;
167     }
168 
169     public void setPrice(String price) {
170         this.price = price;
171     }
172 
173     public String getUniqueId() {
174         return uniqueId;
175     }
176 
177     public void setUniqueId(String uniqueId) {
178         this.uniqueId = uniqueId;
179     }
180 
181 
182 }