View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: ?
8    * Date: 8/13/12
9    * Time: 6:14 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleLicenseRequestItemTitle extends PersistableBusinessObjectBase {
13      private String oleLicenseRequestItemTitleId;
14      private String oleLicenseRequestId;
15      private String itemUUID;
16      private OleLicenseRequestBo oleLicenseRequestBo;
17  
18      public String getOleLicenseRequestId() {
19          return oleLicenseRequestId;
20      }
21  
22      public void setOleLicenseRequestId(String oleLicenseRequestId) {
23          this.oleLicenseRequestId = oleLicenseRequestId;
24      }
25  
26      public String getItemUUID() {
27          return itemUUID;
28      }
29  
30      public void setItemUUID(String itemUUID) {
31          this.itemUUID = itemUUID;
32      }
33  
34      public OleLicenseRequestBo getOleLicenseRequestBo() {
35          return oleLicenseRequestBo;
36      }
37  
38      public void setOleLicenseRequestBo(OleLicenseRequestBo oleLicenseRequestBo) {
39          this.oleLicenseRequestBo = oleLicenseRequestBo;
40      }
41  
42      public String getOleLicenseRequestItemTitleId() {
43          return oleLicenseRequestItemTitleId;
44      }
45  
46      public void setOleLicenseRequestItemTitleId(String oleLicenseRequestItemTitleId) {
47          this.oleLicenseRequestItemTitleId = oleLicenseRequestItemTitleId;
48      }
49  }