View Javadoc
1   package org.kuali.ole.select.document;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.sql.Timestamp;
6   
7   /**
8    * Created by chenchulakshmig on 11/10/14.
9    */
10  public class OLEEResourceAccessWorkflow extends PersistableBusinessObjectBase {
11  
12      private String description;
13      private String status;
14      private Timestamp lastApproved;
15      private String currentOwner;
16  
17      public String getDescription() {
18          return description;
19      }
20  
21      public void setDescription(String description) {
22          this.description = description;
23      }
24  
25      public String getStatus() {
26          return status;
27      }
28  
29      public void setStatus(String status) {
30          this.status = status;
31      }
32  
33      public Timestamp getLastApproved() {
34          return lastApproved;
35      }
36  
37      public void setLastApproved(Timestamp lastApproved) {
38          this.lastApproved = lastApproved;
39      }
40  
41      public String getCurrentOwner() {
42          return currentOwner;
43      }
44  
45      public void setCurrentOwner(String currentOwner) {
46          this.currentOwner = currentOwner;
47      }
48  }