001package org.kuali.ole.select.bo;
002
003import org.kuali.ole.select.gokb.OleGokbTipp;
004
005/**
006 * This class is used to hold the TIPP detail from GOKb service for displaying in UI.
007 */
008public class OLEGOKbTIPP {
009
010    private String title;
011    private String gokbStatus;
012    private String type;
013    private String issn;
014    private String startDate;
015    private String endDate;
016    private String url;
017    private String dateCreated;
018    private String dateUpdated;
019    private boolean select;
020    private Integer publisherId;
021    private boolean tippExists;
022    private OleGokbTipp oleGokbTipp;
023
024    public String getTitle() {
025        return title;
026    }
027
028    public void setTitle(String title) {
029        this.title = title;
030    }
031
032    public String getGokbStatus() {
033        return gokbStatus;
034    }
035
036    public void setGokbStatus(String gokbStatus) {
037        this.gokbStatus = gokbStatus;
038    }
039
040    public String getType() {
041        return type;
042    }
043
044    public void setType(String type) {
045        this.type = type;
046    }
047
048    public String getIssn() {
049        return issn;
050    }
051
052    public void setIssn(String issn) {
053        this.issn = issn;
054    }
055
056    public String getStartDate() {
057        return startDate;
058    }
059
060    public void setStartDate(String startDate) {
061        this.startDate = startDate;
062    }
063
064    public String getEndDate() {
065        return endDate;
066    }
067
068    public void setEndDate(String endDate) {
069        this.endDate = endDate;
070    }
071
072    public String getUrl() {
073        return url;
074    }
075
076    public void setUrl(String url) {
077        this.url = url;
078    }
079
080    public String getDateCreated() {
081        return dateCreated;
082    }
083
084    public void setDateCreated(String dateCreated) {
085        this.dateCreated = dateCreated;
086    }
087
088    public String getDateUpdated() {
089        return dateUpdated;
090    }
091
092    public void setDateUpdated(String dateUpdated) {
093        this.dateUpdated = dateUpdated;
094    }
095
096    public boolean isSelect() {
097        return select;
098    }
099
100    public void setSelect(boolean select) {
101        this.select = select;
102    }
103
104    public Integer getPublisherId() {
105        return publisherId;
106    }
107
108    public void setPublisherId(Integer publisherId) {
109        this.publisherId = publisherId;
110    }
111
112    public boolean isTippExists() {
113        return tippExists;
114    }
115
116    public void setTippExists(boolean tippExists) {
117        this.tippExists = tippExists;
118    }
119
120    public OleGokbTipp getOleGokbTipp() {
121        return oleGokbTipp;
122    }
123
124    public void setOleGokbTipp(OleGokbTipp oleGokbTipp) {
125        this.oleGokbTipp = oleGokbTipp;
126    }
127}