001package org.kuali.ole.describe.bo;
002
003import java.util.List;
004
005/**
006 * InstanceRecordMetaData provides the audit details for Instance Editor
007 */
008public class InstanceRecordMetaData {
009
010    private String status;
011    private String suppressFromPublic;
012    private String fastAddFlag;
013    private String createdBy;
014    private String dateEntered;
015    private List<InstanceRecordUpdatedDetails> updatedDetailsList;
016
017    /**
018     * Gets the status attribute.
019     *
020     * @return Returns the status.
021     */
022    public String getStatus() {
023        return status;
024    }
025
026    /**
027     * Sets the status attribute value.
028     *
029     * @param status The status to set.
030     */
031    public void setStatus(String status) {
032        this.status = status;
033    }
034
035    /**
036     * Gets the suppressFromPublic attribute.
037     *
038     * @return Returns the suppressFromPublic.
039     */
040    public String getSuppressFromPublic() {
041        return suppressFromPublic;
042    }
043
044    /**
045     * Sets the suppressFromPublic attribute value.
046     *
047     * @param suppressFromPublic The suppressFromPublic to set.
048     */
049    public void setSuppressFromPublic(String suppressFromPublic) {
050        this.suppressFromPublic = suppressFromPublic;
051    }
052
053    /**
054     * Gets the fastAddFlag attribute.
055     *
056     * @return Returns the fastAddFlag.
057     */
058    public String getFastAddFlag() {
059        return fastAddFlag;
060    }
061
062    /**
063     * Sets the fastAddFlag attribute value.
064     *
065     * @param fastAddFlag The fastAddFlag to set.
066     */
067    public void setFastAddFlag(String fastAddFlag) {
068        this.fastAddFlag = fastAddFlag;
069    }
070
071    /**
072     * Gets the createdBy attribute.
073     *
074     * @return Returns the createdBy.
075     */
076    public String getCreatedBy() {
077        return createdBy;
078    }
079
080    /**
081     * Sets the createdBy attribute value.
082     *
083     * @param createdBy The createdBy to set.
084     */
085    public void setCreatedBy(String createdBy) {
086        this.createdBy = createdBy;
087    }
088
089    /**
090     * Gets the dateEntered attribute.
091     *
092     * @return Returns the dateEntered.
093     */
094    public String getDateEntered() {
095        return dateEntered;
096    }
097
098    /**
099     * 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}