View Javadoc
1   package org.kuali.ole.describe.bo;
2   
3   /**
4    * InstanceRecordUpdatedDetails provides the audit's update details for Instance Editor
5    */
6   public class InstanceRecordUpdatedDetails {
7       private String lastUpdatedBy;
8       private String lastUpdated;
9   
10      /**
11       * Gets the lastUpdatedBy attribute.
12       *
13       * @return Returns the lastUpdatedBy.
14       */
15      public String getLastUpdatedBy() {
16          return lastUpdatedBy;
17      }
18  
19      /**
20       * Sets the lastUpdatedBy attribute value.
21       *
22       * @param lastUpdatedBy The lastUpdatedBy to set.
23       */
24      public void setLastUpdatedBy(String lastUpdatedBy) {
25          this.lastUpdatedBy = lastUpdatedBy;
26      }
27  
28      /**
29       * Gets the lastUpdated attribute.
30       *
31       * @return Returns the lastUpdated.
32       */
33      public String getLastUpdated() {
34          return lastUpdated;
35      }
36  
37      /**
38       * Sets the lastUpdated attribute value.
39       *
40       * @param lastUpdated The lastUpdated to set.
41       */
42      public void setLastUpdated(String lastUpdated) {
43          this.lastUpdated = lastUpdated;
44      }
45  }