1 package org.kuali.ole.docstore.model.bo;
2
3
4
5
6
7
8
9
10 public class WorkHoldingsDocument {
11 private String holdingsIdentifier;
12 private String locationName;
13 private String callNumber;
14
15
16 public String getHoldingsIdentifier() {
17 return holdingsIdentifier;
18 }
19
20 public void setHoldingsIdentifier(String holdingsIdentifier) {
21 this.holdingsIdentifier = holdingsIdentifier;
22 }
23
24 public String getLocationName() {
25 return locationName;
26 }
27
28 public void setLocationName(String locationName) {
29 this.locationName = locationName;
30 }
31
32 public String getCallNumber() {
33 return callNumber;
34 }
35
36 public void setCallNumber(String callNumber) {
37 this.callNumber = callNumber;
38 }
39
40 @Override
41 public String toString() {
42 return "WorkHoldingsDocument{" +
43 "holdingsIdentifier='" + holdingsIdentifier + '\'' +
44 ", locationName='" + locationName + '\'' +
45 ", callNumber='" + callNumber + '\'' +
46 '}';
47 }
48 }