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