View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   import org.kuali.rice.krad.bo.BusinessObjectBase;
4   
5   /**
6    * OleAgreementSearch is the business object class for Agreement Search.
7    */
8   public class OleAgreementSearch extends BusinessObjectBase {
9       /**
10       * Stores the agreementTitle
11       */
12      private String agreementTitle;
13      /**
14       * Stores the contractNumber
15       */
16      private String contractNumber;
17      /**
18       * Stores the licensee
19       */
20      private String licensee;
21      /**
22       * Stores the licensor
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       * @return agreementTitle
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          //To change body of implemented methods use File | Settings | File Templates.
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 }