001package org.kuali.ole.bo.serachRetrieve;
002
003/**
004 * Created with IntelliJ IDEA.
005 * User: srirams
006 * Date: 7/5/13
007 * Time: 11:36 AM
008 * To change this template use File | Settings | File Templates.
009 */
010public class OleSRUDublin {
011
012    private String title;
013    private String creator;
014    private String subject;
015    private String description;
016    private String publisher;
017    private String date;
018    private String identifier;
019    private String source;
020    private String language;
021    private String type;
022    private String rights;
023    private String format;
024    private String contributor;
025    private String coverage;
026    private String relation;
027
028    public String getTitle() {
029        return title;
030    }
031
032    public void setTitle(String title) {
033        this.title = title;
034    }
035
036    public String getCreator() {
037        return creator;
038    }
039
040    public void setCreator(String creator) {
041        this.creator = creator;
042    }
043
044    public String getSubject() {
045        return subject;
046    }
047
048    public void setSubject(String subject) {
049        this.subject = subject;
050    }
051
052    public String getDescription() {
053        return description;
054    }
055
056    public void setDescription(String description) {
057        this.description = description;
058    }
059
060    public String getPublisher() {
061        return publisher;
062    }
063
064    public void setPublisher(String publisher) {
065        this.publisher = publisher;
066    }
067
068    public String getDate() {
069        return date;
070    }
071
072    public void setDate(String date) {
073        this.date = date;
074    }
075
076    public String getIdentifier() {
077        return identifier;
078    }
079
080    public void setIdentifier(String identifier) {
081        this.identifier = identifier;
082    }
083
084    public String getSource() {
085        return source;
086    }
087
088    public void setSource(String source) {
089        this.source = source;
090    }
091
092    public String getLanguage() {
093        return language;
094    }
095
096    public void setLanguage(String language) {
097        this.language = language;
098    }
099
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}