1 package org.kuali.ole.editor.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 * Gets the status attribute.
18 * @return Returns the status.
19 */
20 public String getStatus() {
21 return status;
22 }
23 /**
24 * Sets the status attribute value.
25 * @param status The status to set.
26 */
27 public void setStatus(String status) {
28 this.status = status;
29 }
30 /**
31 * Gets the suppressFromPublic attribute.
32 * @return Returns the suppressFromPublic.
33 */
34 public String getSuppressFromPublic() {
35 return suppressFromPublic;
36 }
37 /**
38 * Sets the suppressFromPublic attribute value.
39 * @param suppressFromPublic The suppressFromPublic to set.
40 */
41 public void setSuppressFromPublic(String suppressFromPublic) {
42 this.suppressFromPublic = suppressFromPublic;
43 }
44 /**
45 * Gets the fastAddFlag attribute.
46 * @return Returns the fastAddFlag.
47 */
48 public String getFastAddFlag() {
49 return fastAddFlag;
50 }
51 /**
52 * Sets the fastAddFlag attribute value.
53 * @param fastAddFlag The fastAddFlag to set.
54 */
55 public void setFastAddFlag(String fastAddFlag) {
56 this.fastAddFlag = fastAddFlag;
57 }
58 /**
59 * Gets the createdBy attribute.
60 * @return Returns the createdBy.
61 */
62 public String getCreatedBy() {
63 return createdBy;
64 }
65 /**
66 * Sets the createdBy attribute value.
67 * @param createdBy The createdBy to set.
68 */
69 public void setCreatedBy(String createdBy) {
70 this.createdBy = createdBy;
71 }
72 /**
73 * Gets the dateEntered attribute.
74 * @return Returns the dateEntered.
75 */
76 public String getDateEntered() {
77 return dateEntered;
78 }
79 /**
80 * Sets the dateEntered attribute value.
81 * @param dateEntered The dateEntered to set.
82 */
83 public void setDateEntered(String dateEntered) {
84 this.dateEntered = dateEntered;
85 }
86 /**
87 * Gets the updatedDetailsList attribute.
88 * @return Returns the updatedDetailsList.
89 */
90 public List<InstanceRecordUpdatedDetails> getUpdatedDetailsList() {
91 return updatedDetailsList;
92 }
93 /**
94 * Sets the updatedDetailsList attribute value.
95 * @param updatedDetailsList The updatedDetailsList to set.
96 */
97 public void setUpdatedDetailsList(List<InstanceRecordUpdatedDetails> updatedDetailsList) {
98 this.updatedDetailsList = updatedDetailsList;
99 }
100 }