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  
15      /**
16       * Gets the agendaDescription attribute.
17       * @return Returns the agendaDescription value.
18       */
19      public String getAgendaDescription() {
20          return agendaDescription;
21      }
22  
23      /**
24       * Sets the agendaDescription attribute value.
25       * @param agendaDescription  The agendaDescription to set.
26       */
27      public void setAgendaDescription(String agendaDescription) {
28          this.agendaDescription = agendaDescription;
29      }
30  
31      /**
32       * Gets the originalMarcFileName.
33       * @return  Returns the originalMarcFileName.
34       */
35      public String getOriginalMarcFileName() {
36          return originalMarcFileName;
37      }
38  
39      /**
40       *   Sets the originalMarcFileName attribute value.
41       * @param originalMarcFileName . The originalMarcFileName to set.
42       */
43      public void setOriginalMarcFileName(String originalMarcFileName) {
44          this.originalMarcFileName = originalMarcFileName;
45      }
46      /**
47       * Gets the marcFileContent attribute
48       * @return  Returns the marcFileContent.
49       */
50      public String getMarcFileContent() {
51          return marcFileContent;
52      }
53      /**
54       * Sets the marcFileContent attribute value.
55       * @param marcFileContent  The marcFileContent to set.
56       */
57      public void setMarcFileContent(String marcFileContent) {
58          this.marcFileContent = marcFileContent;
59      }
60      /**
61       * Gets the originalEdiFileName the attribute.
62       * @return  Returns the originalEdiFileName.
63       */
64      public String getOriginalEdiFileName() {
65          return originalEdiFileName;
66      }
67      /**
68       * Sets the originalEdiFileName attribute value.
69       * @param originalEdiFileName  The originalEdiFileName to set.
70       */
71      public void setOriginalEdiFileName(String originalEdiFileName) {
72          this.originalEdiFileName = originalEdiFileName;
73      }
74      /**
75       * Gets the ediFileContent attribute.
76       * @return  Returns the ediFileContent.
77       */
78      public String getEdiFileContent() {
79          return ediFileContent;
80      }
81      /**
82       * Sets the ediFileContent attribute value.
83       * @param ediFileContent  The ediFileContent to set.
84       */
85      public void setEdiFileContent(String ediFileContent) {
86          this.ediFileContent = ediFileContent;
87      }
88      /**
89       * Gets the agendaName attribute.
90       * @return  Returns the agendaName.
91       */
92      public String getAgendaName() {
93          return agendaName;
94      }
95      /**
96       * Sets the agendaName attribute value.
97       * @param agendaName  The agendaName to set.
98       */
99      public void setAgendaName(String agendaName) {
100         this.agendaName = agendaName;
101     }
102     /**
103      * Gets the byPassPreProcessing attribute.
104      * @return  Returns the byPassPreProcessing.
105      */
106     public Boolean getByPassPreProcessing() {
107         return byPassPreProcessing;
108     }
109     /**
110      * Sets the byPassPreProcessing attribute value.
111      * @param byPassPreProcessing  The byPassPreProcessing to set.
112      */
113     public void setByPassPreProcessing(Boolean byPassPreProcessing) {
114         this.byPassPreProcessing = byPassPreProcessing;
115     }
116 }