View Javadoc

1   package org.kuali.ole.editor.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       * Gets the lastUpdatedBy attribute.
11       * @return Returns the lastUpdatedBy.
12       */
13      public String getLastUpdatedBy() {
14          return lastUpdatedBy;
15      }
16      /**
17       * Sets the lastUpdatedBy attribute value.
18       * @param lastUpdatedBy The lastUpdatedBy to set.
19       */
20      public void setLastUpdatedBy(String lastUpdatedBy) {
21          this.lastUpdatedBy = lastUpdatedBy;
22      }
23      /**
24       * Gets the lastUpdated attribute.
25       * @return Returns the lastUpdated.
26       */
27      public String getLastUpdated() {
28          return lastUpdated;
29      }
30      /**
31       * Sets the lastUpdated attribute value.
32       * @param lastUpdated The lastUpdated to set.
33       */
34      public void setLastUpdated(String lastUpdated) {
35          this.lastUpdated = lastUpdated;
36      }
37  }