1 package org.kuali.ole.select.bo;
2
3 import org.kuali.ole.select.gokb.OleGokbTipp;
4
5
6
7
8 public class OLEGOKbTIPP {
9
10 private String title;
11 private String gokbStatus;
12 private String type;
13 private String issn;
14 private String startDate;
15 private String endDate;
16 private String url;
17 private String dateCreated;
18 private String dateUpdated;
19 private boolean select;
20 private Integer publisherId;
21 private boolean tippExists;
22 private OleGokbTipp oleGokbTipp;
23
24 public String getTitle() {
25 return title;
26 }
27
28 public void setTitle(String title) {
29 this.title = title;
30 }
31
32 public String getGokbStatus() {
33 return gokbStatus;
34 }
35
36 public void setGokbStatus(String gokbStatus) {
37 this.gokbStatus = gokbStatus;
38 }
39
40 public String getType() {
41 return type;
42 }
43
44 public void setType(String type) {
45 this.type = type;
46 }
47
48 public String getIssn() {
49 return issn;
50 }
51
52 public void setIssn(String issn) {
53 this.issn = issn;
54 }
55
56 public String getStartDate() {
57 return startDate;
58 }
59
60 public void setStartDate(String startDate) {
61 this.startDate = startDate;
62 }
63
64 public String getEndDate() {
65 return endDate;
66 }
67
68 public void setEndDate(String endDate) {
69 this.endDate = endDate;
70 }
71
72 public String getUrl() {
73 return url;
74 }
75
76 public void setUrl(String url) {
77 this.url = url;
78 }
79
80 public String getDateCreated() {
81 return dateCreated;
82 }
83
84 public void setDateCreated(String dateCreated) {
85 this.dateCreated = dateCreated;
86 }
87
88 public String getDateUpdated() {
89 return dateUpdated;
90 }
91
92 public void setDateUpdated(String dateUpdated) {
93 this.dateUpdated = dateUpdated;
94 }
95
96 public boolean isSelect() {
97 return select;
98 }
99
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 }