1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.ole.docstore.common.document.PHoldings;
4
5 import java.util.List;
6
7
8
9
10
11
12
13
14 public class OleWorkHoldingsDocument extends PHoldings {
15
16 private boolean select;
17 private String bibTitle;
18 private String bibIdentifier;
19 private String staffOnly;
20 private String holdingsIdentifier;
21 private String localId;
22 private String instanceIdentifier;
23 private String locationName;
24 private String callNumber;
25 private String callNumberPrefix;
26 private String callNumberType;
27 private String copyNumber;
28 private String linkedBibCount;
29 private List<String> bibUUIDList;
30 private String staffOnlyFlag;
31 protected String dateEntered;
32 protected String dateUpdated;
33 protected String createdBy;
34 protected String updatedBy;
35
36 public String getUpdatedBy() {
37 return updatedBy;
38 }
39
40 public void setUpdatedBy(String updatedBy) {
41 this.updatedBy = updatedBy;
42 }
43
44 public String getCreatedBy() {
45 return createdBy;
46 }
47
48 public void setCreatedBy(String createdBy) {
49 this.createdBy = createdBy;
50 }
51
52 public String getDateUpdated() {
53 return dateUpdated;
54 }
55
56 public void setDateUpdated(String dateUpdated) {
57 this.dateUpdated = dateUpdated;
58 }
59
60 public String getDateEntered() {
61 return dateEntered;
62 }
63
64 public void setDateEntered(String dateEntered) {
65 this.dateEntered = dateEntered;
66 }
67
68 public String getHoldingsIdentifier() {
69 return holdingsIdentifier;
70 }
71
72 public void setHoldingsIdentifier(String holdingsIdentifier) {
73 this.holdingsIdentifier = holdingsIdentifier;
74 }
75
76 public String getLocalId() {
77 return localId;
78 }
79
80 public void setLocalId(String localId) {
81 this.localId = localId;
82 }
83
84 public String getInstanceIdentifier() {
85 return instanceIdentifier;
86 }
87
88 public void setInstanceIdentifier(String instanceIdentifier) {
89 this.instanceIdentifier = instanceIdentifier;
90 }
91
92 public String getLocationName() {
93 return locationName;
94 }
95
96 public void setLocationName(String locationName) {
97 this.locationName = locationName;
98 }
99
100 public String getCallNumberPrefix() {
101 return callNumberPrefix;
102 }
103
104 public void setCallNumberPrefix(String callNumberPrefix) {
105 this.callNumberPrefix = callNumberPrefix;
106 }
107
108 public String getCallNumber() {
109 return callNumber;
110 }
111
112 public void setCallNumber(String callNumber) {
113 this.callNumber = callNumber;
114 }
115
116 public String getCallNumberType() {
117 return callNumberType;
118 }
119
120 public void setCallNumberType(String callNumberType) {
121 this.callNumberType = callNumberType;
122 }
123
124 public String getCopyNumber() {
125 return copyNumber;
126 }
127
128 public void setCopyNumber(String copyNumber) {
129 this.copyNumber = copyNumber;
130 }
131
132 public String getLinkedBibCount() {
133 return linkedBibCount;
134 }
135
136 public void setLinkedBibCount(String linkedBibCount) {
137 this.linkedBibCount = linkedBibCount;
138 }
139
140 public List<String> getBibUUIDList() {
141 return bibUUIDList;
142 }
143
144 public void setBibUUIDList(List<String> bibUUIDList) {
145 this.bibUUIDList = bibUUIDList;
146 }
147
148 public String getBibTitle() {
149 return bibTitle;
150 }
151
152 public void setBibTitle(String bibTitle) {
153 this.bibTitle = bibTitle;
154 }
155
156 public String getBibIdentifier() {
157 return bibIdentifier;
158 }
159
160 public void setBibIdentifier(String bibIdentifier) {
161 this.bibIdentifier = bibIdentifier;
162 }
163
164 public String getStaffOnly() {
165 return staffOnly;
166 }
167
168 public void setStaffOnly(String staffOnly) {
169 this.staffOnly = staffOnly;
170 }
171
172 public boolean isSelect() {
173 return select;
174 }
175
176 public void setSelect(boolean select) {
177 this.select = select;
178 }
179
180
181 }