View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   /**
4    * IngestRecord is a business object class for Ingest Record
5    */
6   public class IngestRecord {
7       private String originalMarcFileName;
8       private String marcFileContent;
9       private String originalEdiFileName;
10      private String ediFileContent;
11      private String agendaName;
12      private Boolean byPassPreProcessing;
13      private String agendaDescription;
14      private boolean isUpdate =  false;
15      private String user;
16  
17  
18      public boolean isUpdate() {
19          return isUpdate;
20      }
21  
22      public void setUpdate(boolean update) {
23          isUpdate = update;
24      }
25  
26      /**
27       * Gets the agendaDescription attribute.
28       * @return Returns the agendaDescription value.
29       */
30      public String getAgendaDescription() {
31          return agendaDescription;
32      }
33  
34      /**
35       * Sets the agendaDescription attribute value.
36       * @param agendaDescription  The agendaDescription to set.
37       */
38      public void setAgendaDescription(String agendaDescription) {
39          this.agendaDescription = agendaDescription;
40      }
41  
42      /**
43       * Gets the originalMarcFileName.
44       * @return  Returns the originalMarcFileName.
45       */
46      public String getOriginalMarcFileName() {
47          return originalMarcFileName;
48      }
49  
50      /**
51       *   Sets the originalMarcFileName attribute value.
52       * @param originalMarcFileName . The originalMarcFileName to set.
53       */
54      public void setOriginalMarcFileName(String originalMarcFileName) {
55          this.originalMarcFileName = originalMarcFileName;
56      }
57      /**
58       * Gets the marcFileContent attribute
59       * @return  Returns the marcFileContent.
60       */
61      public String getMarcFileContent() {
62          return marcFileContent;
63      }
64      /**
65       * Sets the marcFileContent attribute value.
66       * @param marcFileContent  The marcFileContent to set.
67       */
68      public void setMarcFileContent(String marcFileContent) {
69          this.marcFileContent = marcFileContent;
70      }
71      /**
72       * Gets the originalEdiFileName the attribute.
73       * @return  Returns the originalEdiFileName.
74       */
75      public String getOriginalEdiFileName() {
76          return originalEdiFileName;
77      }
78      /**
79       * Sets the originalEdiFileName attribute value.
80       * @param originalEdiFileName  The originalEdiFileName to set.
81       */
82      public void setOriginalEdiFileName(String originalEdiFileName) {
83          this.originalEdiFileName = originalEdiFileName;
84      }
85      /**
86       * Gets the ediFileContent attribute.
87       * @return  Returns the ediFileContent.
88       */
89      public String getEdiFileContent() {
90          return ediFileContent;
91      }
92      /**
93       * Sets the ediFileContent attribute value.
94       * @param ediFileContent  The ediFileContent to set.
95       */
96      public void setEdiFileContent(String ediFileContent) {
97          this.ediFileContent = ediFileContent;
98      }
99      /**
100      * Gets the agendaName attribute.
101      * @return  Returns the agendaName.
102      */
103     public String getAgendaName() {
104         return agendaName;
105     }
106     /**
107      * Sets the agendaName attribute value.
108      * @param agendaName  The agendaName to set.
109      */
110     public void setAgendaName(String agendaName) {
111         this.agendaName = agendaName;
112     }
113     /**
114      * Gets the byPassPreProcessing attribute.
115      * @return  Returns the byPassPreProcessing.
116      */
117     public Boolean getByPassPreProcessing() {
118         return byPassPreProcessing;
119     }
120     /**
121      * Sets the byPassPreProcessing attribute value.
122      * @param byPassPreProcessing  The byPassPreProcessing to set.
123      */
124     public void setByPassPreProcessing(Boolean byPassPreProcessing) {
125         this.byPassPreProcessing = byPassPreProcessing;
126     }
127 
128     public String getUser() {
129         return user;
130     }
131 
132     public void setUser(String user) {
133         this.user = user;
134     }
135 }