1 package org.kuali.ole.docstore.model.bo;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6
7
8
9
10
11
12
13 public class WorkEHoldingsDocument extends OleDocument {
14
15 private String accessStatus;
16 private String platForm;
17 private String imprint;
18 private String statisticalCode;
19 private String location;
20 private String bibIdentifier;
21 private String instanceIdentifier;
22 private String holdingsIdentifier;
23 private String localId;
24 private String url;
25 private String eResourceName;
26 private List<String> coverageDates = new ArrayList<>();
27 public String getUrl() {
28 return url;
29 }
30
31 public void setUrl(String url) {
32 this.url = url;
33 }
34
35 public String getAccessStatus() {
36 return accessStatus;
37 }
38
39 public void setAccessStatus(String accessStatus) {
40 this.accessStatus = accessStatus;
41 }
42
43 public String getPlatForm() {
44 return platForm;
45 }
46
47 public void setPlatForm(String platForm) {
48 this.platForm = platForm;
49 }
50
51 public String getImprint() {
52 return imprint;
53 }
54
55 public void setImprint(String imprint) {
56 this.imprint = imprint;
57 }
58
59 public String getStatisticalCode() {
60 return statisticalCode;
61 }
62
63 public void setStatisticalCode(String statisticalCode) {
64 this.statisticalCode = statisticalCode;
65 }
66
67 public String getBibIdentifier() {
68 return bibIdentifier;
69 }
70
71 public void setBibIdentifier(String bibIdentifier) {
72 this.bibIdentifier = bibIdentifier;
73 }
74
75 public String getInstanceIdentifier() {
76 return instanceIdentifier;
77 }
78
79 public void setInstanceIdentifier(String instanceIdentifier) {
80 this.instanceIdentifier = instanceIdentifier;
81 }
82
83 public String getHoldingsIdentifier() {
84 return holdingsIdentifier;
85 }
86
87 public void setHoldingsIdentifier(String holdingsIdentifier) {
88 this.holdingsIdentifier = holdingsIdentifier;
89 }
90
91 public String getLocalId() {
92 return localId;
93 }
94
95 public void setLocalId(String localId) {
96 this.localId = localId;
97 }
98
99 public void setLocation(String location) {
100 this.location = location;
101 }
102
103 public String getLocation() {
104 return location;
105 }
106
107 public String geteResourceName() {
108 return eResourceName;
109 }
110
111 public void seteResourceName(String eResourceName) {
112 this.eResourceName = eResourceName;
113 }
114
115 public List<String> getCoverageDates() {
116 return coverageDates;
117 }
118
119 public void setCoverageDates(List<String> coverageDates) {
120 this.coverageDates = coverageDates;
121 }
122 }