View Javadoc
1   /*
2    * Copyright 2007 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.gl.service.impl;
17  
18  import java.util.Map;
19  
20  import org.kuali.ole.gl.businessobject.OriginEntryGroup;
21  import org.kuali.ole.gl.businessobject.OriginEntryInformation;
22  
23  /**
24   * This class represents the status for origin entries through the different origin entry groups (i.e. input, valid, error, and expired)
25   */
26  public class ScrubberStatus {
27      private String inputFileName;
28      private String validFileName;
29      private String errorFileName;
30      private String expiredFileName;
31      private Map<OriginEntryInformation, OriginEntryInformation> unscrubbedToScrubbedEntries;
32  
33      /**
34       * Gets the errorFileName attribute.
35       * 
36       * @return Returns the errorFileName.
37       */
38      public String getErrorFileName() {
39          return errorFileName;
40      }
41  
42      /**
43       * Sets the errorFileName attribute value.
44       * 
45       * @param errorFileName The errorFileName to set.
46       */
47      public void setErrorFileName(String errorFileName) {
48          this.errorFileName = errorFileName;
49      }
50  
51      /**
52       * Gets the expiredFileName attribute.
53       * 
54       * @return Returns the expiredFileName.
55       */
56      public String getExpiredFileName() {
57          return expiredFileName;
58      }
59  
60      /**
61       * Sets the expiredFileName attribute value.
62       * 
63       * @param expiredFileName The expiredFileName to set.
64       */
65      public void setExpiredFileName(String expiredFileName) {
66          this.expiredFileName = expiredFileName;
67      }
68  
69      /**
70       * Gets the inputFileName attribute.
71       * 
72       * @return Returns the inputFileName.
73       */
74      public String getInputFileName() {
75          return inputFileName;
76      }
77  
78      /**
79       * Sets the inputFileName attribute value.
80       * 
81       * @param inputFileName The inputFileName to set.
82       */
83      public void setInputFileName(String inputFileName) {
84          this.inputFileName = inputFileName;
85      }
86  
87      /**
88       * Gets the validFileName attribute.
89       * 
90       * @return Returns the validFileName.
91       */
92      public String getValidFileName() {
93          return validFileName;
94      }
95  
96      /**
97       * Sets the validFileName attribute value.
98       * 
99       * @param validFileName The validFileName to set.
100      */
101     public void setValidFileName(String validFileName) {
102         this.validFileName = validFileName;
103     }
104 
105     /**
106      * Gets the unscrubbedToScrubbedEntry attribute.
107      * 
108      * @return Returns the unscrubbedToScrubbedEntry.
109      */
110     public Map<OriginEntryInformation, OriginEntryInformation> getUnscrubbedToScrubbedEntries() {
111         return unscrubbedToScrubbedEntries;
112     }
113 
114     /**
115      * Sets the unscrubbedToScrubbedEntry attribute value.
116      * 
117      * @param unscrubbedToScrubbedEntry The unscrubbedToScrubbedEntry to set.
118      */
119     public void setUnscrubbedToScrubbedEntries(Map<OriginEntryInformation, OriginEntryInformation> unscrubbedToScrubbedEntry) {
120         this.unscrubbedToScrubbedEntries = unscrubbedToScrubbedEntry;
121     }
122 }