001 /* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.kfs.gl.service.impl; 017 018 import org.kuali.kfs.gl.businessobject.OriginEntryGroup; 019 020 /** 021 * This class represents the status for origin entries through the different origin entry groups (i.e. input, valid, error, and expired) 022 */ 023 public class CollectorScrubberStatus { 024 private String inputFileName; 025 private String validFileName; 026 private String errorFileName; 027 private String expiredFileName; 028 029 /** 030 * Gets the errorFileName attribute. 031 * 032 * @return Returns the errorFileName. 033 */ 034 public String getErrorFileName() { 035 return errorFileName; 036 } 037 038 /** 039 * Sets the errorFileName attribute value. 040 * 041 * @param errorFileName The errorFileName to set. 042 */ 043 public void setErrorFileName(String errorFileName) { 044 this.errorFileName = errorFileName; 045 } 046 047 /** 048 * Gets the expiredFileName attribute. 049 * 050 * @return Returns the expiredFileName. 051 */ 052 public String getExpiredFileName() { 053 return expiredFileName; 054 } 055 056 /** 057 * Sets the expiredFileName attribute value. 058 * 059 * @param expiredFileName The expiredFileName to set. 060 */ 061 public void setExpiredFileName(String expiredFileName) { 062 this.expiredFileName = expiredFileName; 063 } 064 065 /** 066 * Gets the inputFileName attribute. 067 * 068 * @return Returns the inputFileName. 069 */ 070 public String getInputFileName() { 071 return inputFileName; 072 } 073 074 /** 075 * Sets the inputFileName attribute value. 076 * 077 * @param inputFileName The inputFileName to set. 078 */ 079 public void setInputFileName(String inputFileName) { 080 this.inputFileName = inputFileName; 081 } 082 083 /** 084 * Gets the validFileName attribute. 085 * 086 * @return Returns the validFileName. 087 */ 088 public String getValidFileName() { 089 return validFileName; 090 } 091 092 /** 093 * Sets the validFileName attribute value. 094 * 095 * @param validFileName The validFileName to set. 096 */ 097 public void setValidFileName(String validFileName) { 098 this.validFileName = validFileName; 099 } 100 }