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 19 /** 20 * This class represents the status for origin entries through the different origin entry groups (i.e. input, valid, error, and expired) 21 */ 22 public class CollectorScrubberStatus { 23 private String inputFileName; 24 private String validFileName; 25 private String errorFileName; 26 private String expiredFileName; 27 28 /** 29 * Gets the errorFileName attribute. 30 * 31 * @return Returns the errorFileName. 32 */ 33 public String getErrorFileName() { 34 return errorFileName; 35 } 36 37 /** 38 * Sets the errorFileName attribute value. 39 * 40 * @param errorFileName The errorFileName to set. 41 */ 42 public void setErrorFileName(String errorFileName) { 43 this.errorFileName = errorFileName; 44 } 45 46 /** 47 * Gets the expiredFileName attribute. 48 * 49 * @return Returns the expiredFileName. 50 */ 51 public String getExpiredFileName() { 52 return expiredFileName; 53 } 54 55 /** 56 * Sets the expiredFileName attribute value. 57 * 58 * @param expiredFileName The expiredFileName to set. 59 */ 60 public void setExpiredFileName(String expiredFileName) { 61 this.expiredFileName = expiredFileName; 62 } 63 64 /** 65 * Gets the inputFileName attribute. 66 * 67 * @return Returns the inputFileName. 68 */ 69 public String getInputFileName() { 70 return inputFileName; 71 } 72 73 /** 74 * Sets the inputFileName attribute value. 75 * 76 * @param inputFileName The inputFileName to set. 77 */ 78 public void setInputFileName(String inputFileName) { 79 this.inputFileName = inputFileName; 80 } 81 82 /** 83 * Gets the validFileName attribute. 84 * 85 * @return Returns the validFileName. 86 */ 87 public String getValidFileName() { 88 return validFileName; 89 } 90 91 /** 92 * Sets the validFileName attribute value. 93 * 94 * @param validFileName The validFileName to set. 95 */ 96 public void setValidFileName(String validFileName) { 97 this.validFileName = validFileName; 98 } 99 }