1 package org.kuali.ole.bo.serachRetrieve;
2
3
4
5
6
7
8
9
10 public class OleSRUDublin {
11
12 private String title;
13 private String creator;
14 private String subject;
15 private String description;
16 private String publisher;
17 private String date;
18 private String identifier;
19 private String source;
20 private String language;
21 private String type;
22 private String rights;
23 private String format;
24 private String contributor;
25 private String coverage;
26 private String relation;
27
28 public String getTitle() {
29 return title;
30 }
31
32 public void setTitle(String title) {
33 this.title = title;
34 }
35
36 public String getCreator() {
37 return creator;
38 }
39
40 public void setCreator(String creator) {
41 this.creator = creator;
42 }
43
44 public String getSubject() {
45 return subject;
46 }
47
48 public void setSubject(String subject) {
49 this.subject = subject;
50 }
51
52 public String getDescription() {
53 return description;
54 }
55
56 public void setDescription(String description) {
57 this.description = description;
58 }
59
60 public String getPublisher() {
61 return publisher;
62 }
63
64 public void setPublisher(String publisher) {
65 this.publisher = publisher;
66 }
67
68 public String getDate() {
69 return date;
70 }
71
72 public void setDate(String date) {
73 this.date = date;
74 }
75
76 public String getIdentifier() {
77 return identifier;
78 }
79
80 public void setIdentifier(String identifier) {
81 this.identifier = identifier;
82 }
83
84 public String getSource() {
85 return source;
86 }
87
88 public void setSource(String source) {
89 this.source = source;
90 }
91
92 public String getLanguage() {
93 return language;
94 }
95
96 public void setLanguage(String language) {
97 this.language = language;
98 }
99
100 public String getType() {
101 return type;
102 }
103
104 public void setType(String type) {
105 this.type = type;
106 }
107
108 public String getRights() {
109 return rights;
110 }
111
112 public void setRights(String rights) {
113 this.rights = rights;
114 }
115
116 public String getFormat() {
117 return format;
118 }
119
120 public void setFormat(String format) {
121 this.format = format;
122 }
123
124 public String getContributor() {
125 return contributor;
126 }
127
128 public void setContributor(String contributor) {
129 this.contributor = contributor;
130 }
131
132 public String getCoverage() {
133 return coverage;
134 }
135
136 public void setCoverage(String coverage) {
137 this.coverage = coverage;
138 }
139
140 public String getRelation() {
141 return relation;
142 }
143
144 public void setRelation(String relation) {
145 this.relation = relation;
146 }
147
148 @Override
149 public String toString() {
150 return "OleSRUDublinRecord{" +
151 "title='" + title + '\'' +
152 ", creator='" + creator + '\'' +
153 ", subject='" + subject + '\'' +
154 ", description='" + description + '\'' +
155 ", publisher='" + publisher + '\'' +
156 ", date='" + date + '\'' +
157 ", identifier='" + identifier + '\'' +
158 ", source='" + source + '\'' +
159 ", language='" + language + '\'' +
160 ", type='" + type + '\'' +
161 ", rights='" + rights + '\'' +
162 ", format='" + format + '\'' +
163 ", contributor='" + contributor + '\'' +
164 ", coverage='" + coverage + '\'' +
165 ", relation='" + relation + '\'' +
166 '}';
167 }
168 }