View Javadoc
1   package org.kuali.ole.describe.bo;
2   
3   import java.util.List;
4   
5   /**
6    * InstanceRecordMetaData provides the audit details for Instance Editor
7    */
8   public class InstanceRecordMetaData {
9   
10      private String status;
11      private String suppressFromPublic;
12      private String fastAddFlag;
13      private String createdBy;
14      private String dateEntered;
15      private List<InstanceRecordUpdatedDetails> updatedDetailsList;
16  
17      /**
18       * Gets the status attribute.
19       *
20       * @return Returns the status.
21       */
22      public String getStatus() {
23          return status;
24      }
25  
26      /**
27       * Sets the status attribute value.
28       *
29       * @param status The status to set.
30       */
31      public void setStatus(String status) {
32          this.status = status;
33      }
34  
35      /**
36       * Gets the suppressFromPublic attribute.
37       *
38       * @return Returns the suppressFromPublic.
39       */
40      public String getSuppressFromPublic() {
41          return suppressFromPublic;
42      }
43  
44      /**
45       * Sets the suppressFromPublic attribute value.
46       *
47       * @param suppressFromPublic The suppressFromPublic to set.
48       */
49      public void setSuppressFromPublic(String suppressFromPublic) {
50          this.suppressFromPublic = suppressFromPublic;
51      }
52  
53      /**
54       * Gets the fastAddFlag attribute.
55       *
56       * @return Returns the fastAddFlag.
57       */
58      public String getFastAddFlag() {
59          return fastAddFlag;
60      }
61  
62      /**
63       * Sets the fastAddFlag attribute value.
64       *
65       * @param fastAddFlag The fastAddFlag to set.
66       */
67      public void setFastAddFlag(String fastAddFlag) {
68          this.fastAddFlag = fastAddFlag;
69      }
70  
71      /**
72       * Gets the createdBy attribute.
73       *
74       * @return Returns the createdBy.
75       */
76      public String getCreatedBy() {
77          return createdBy;
78      }
79  
80      /**
81       * Sets the createdBy attribute value.
82       *
83       * @param createdBy The createdBy to set.
84       */
85      public void setCreatedBy(String createdBy) {
86          this.createdBy = createdBy;
87      }
88  
89      /**
90       * Gets the dateEntered attribute.
91       *
92       * @return Returns the dateEntered.
93       */
94      public String getDateEntered() {
95          return dateEntered;
96      }
97  
98      /**
99       * Sets the dateEntered attribute value.
100      *
101      * @param dateEntered The dateEntered to set.
102      */
103     public void setDateEntered(String dateEntered) {
104         this.dateEntered = dateEntered;
105     }
106 
107     /**
108      * Gets the updatedDetailsList attribute.
109      *
110      * @return Returns the updatedDetailsList.
111      */
112     public List<InstanceRecordUpdatedDetails> getUpdatedDetailsList() {
113         return updatedDetailsList;
114     }
115 
116     /**
117      * Sets the updatedDetailsList attribute value.
118      *
119      * @param updatedDetailsList The updatedDetailsList to set.
120      */
121     public void setUpdatedDetailsList(List<InstanceRecordUpdatedDetails> updatedDetailsList) {
122         this.updatedDetailsList = updatedDetailsList;
123     }
124 }