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.businessobject;
17  
18  import org.kuali.ole.select.lookup.DocData;
19  import org.kuali.rice.krad.bo.BusinessObjectBase;
20  
21  import java.util.LinkedHashMap;
22  
23  public class Book extends BusinessObjectBase {
24      private DocData docData;
25  
26      public DocData getDocData() {
27          return docData;
28      }
29  
30      public void setDocData(DocData docData) {
31          this.docData = docData;
32      }
33  
34      protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
35          // TODO Auto-generated method stub
36          return null;
37      }
38  
39      public void refresh() {
40          // TODO Auto-generated method stub
41  
42      }
43  
44      private Long orderid;
45  
46      public Long getOrderid() {
47          return orderid;
48      }
49  
50      public void setOrderid(Long orderid) {
51          this.orderid = orderid;
52      }
53  
54      private String name;
55  
56      public String getName() {
57          return name;
58      }
59  
60      public void setName(String name) {
61          this.name = name;
62      }
63  
64      public String getIsbn() {
65          return isbn;
66      }
67  
68      public void setIsbn(String isbn) {
69          this.isbn = isbn;
70      }
71  
72      private String isbn;
73  }