1 package org.kuali.ole.select.bo;
2
3 import org.kuali.rice.krad.bo.BusinessObjectBase;
4
5
6
7
8 public class OleAgreementSearch extends BusinessObjectBase {
9
10
11
12 private String agreementTitle;
13
14
15
16 private String contractNumber;
17
18
19
20 private String licensee;
21
22
23
24 private String licensor;
25
26 private String uniqueId;
27
28 private String methodName;
29
30 private String status;
31
32 private String type;
33
34
35
36
37 public String getAgreementTitle() {
38 return agreementTitle;
39 }
40
41 public void setAgreementTitle(String agreementTitle) {
42 this.agreementTitle = agreementTitle;
43 }
44
45 public String getContractNumber() {
46 return contractNumber;
47 }
48
49 public void setContractNumber(String contractNumber) {
50 this.contractNumber = contractNumber;
51 }
52
53 public String getLicensee() {
54 return licensee;
55 }
56
57 public void setLicensee(String licensee) {
58 this.licensee = licensee;
59 }
60
61 public String getLicensor() {
62 return licensor;
63 }
64
65 public void setLicensor(String licensor) {
66 this.licensor = licensor;
67 }
68
69 public String getUniqueId() {
70 return uniqueId;
71 }
72
73 public void setUniqueId(String uniqueId) {
74 this.uniqueId = uniqueId;
75 }
76
77 @Override
78 public void refresh() {
79
80 }
81
82 public String getMethodName() {
83 return methodName;
84 }
85
86 public void setMethodName(String methodName) {
87 this.methodName = methodName;
88 }
89
90 public String getStatus() {
91 return status;
92 }
93
94 public void setStatus(String status) {
95 this.status = status;
96 }
97
98 public String getType() {
99 return type;
100 }
101
102 public void setType(String type) {
103 this.type = type;
104 }
105 }