View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   
6   /**
7    * Created by chenchulakshmig on 1/13/15.
8    */
9   public class OLEHoldingsSearchResultDisplayRow {
10  
11      private String id;
12      private String location;
13      private String callNumber;
14      private String itemLocation;
15      private String bibIdentifier;
16      private List<OLEItemSearchResultDisplayRow> oleItemSearchResultDisplayRowList = new ArrayList<>();
17  
18      public String getId() {
19          return id;
20      }
21  
22      public void setId(String id) {
23          this.id = id;
24      }
25  
26      public String getLocation() {
27          return location;
28      }
29  
30      public void setLocation(String location) {
31          this.location = location;
32      }
33  
34      public String getCallNumber() {
35          return callNumber;
36      }
37  
38      public void setCallNumber(String callNumber) {
39          this.callNumber = callNumber;
40      }
41  
42      public String getItemLocation() {
43          return itemLocation;
44      }
45  
46      public void setItemLocation(String itemLocation) {
47          this.itemLocation = itemLocation;
48      }
49  
50      public String getBibIdentifier() {
51          return bibIdentifier;
52      }
53  
54      public void setBibIdentifier(String bibIdentifier) {
55          this.bibIdentifier = bibIdentifier;
56      }
57  
58      public List<OLEItemSearchResultDisplayRow> getOleItemSearchResultDisplayRowList() {
59          return oleItemSearchResultDisplayRowList;
60      }
61  
62      public void setOleItemSearchResultDisplayRowList(List<OLEItemSearchResultDisplayRow> oleItemSearchResultDisplayRowList) {
63          this.oleItemSearchResultDisplayRowList = oleItemSearchResultDisplayRowList;
64      }
65  }