001/*
002 * Copyright 2007 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 */
016package org.kuali.ole.gl.service.impl;
017
018
019/**
020 * This class represents the status for origin entries through the different origin entry groups (i.e. input, valid, error, and expired) 
021 */
022public class CollectorScrubberStatus {
023    private String inputFileName;
024    private String validFileName;
025    private String errorFileName;
026    private String expiredFileName;
027
028    /**
029     * Gets the errorFileName attribute.
030     * 
031     * @return Returns the errorFileName.
032     */
033    public String getErrorFileName() {
034        return errorFileName;
035    }
036
037    /**
038     * Sets the errorFileName attribute value.
039     * 
040     * @param errorFileName The errorFileName to set.
041     */
042    public void setErrorFileName(String errorFileName) {
043        this.errorFileName = errorFileName;
044    }
045
046    /**
047     * Gets the expiredFileName attribute.
048     * 
049     * @return Returns the expiredFileName.
050     */
051    public String getExpiredFileName() {
052        return expiredFileName;
053    }
054
055    /**
056     * Sets the expiredFileName attribute value.
057     * 
058     * @param expiredFileName The expiredFileName to set.
059     */
060    public void setExpiredFileName(String expiredFileName) {
061        this.expiredFileName = expiredFileName;
062    }
063
064    /**
065     * Gets the inputFileName attribute.
066     * 
067     * @return Returns the inputFileName.
068     */
069    public String getInputFileName() {
070        return inputFileName;
071    }
072
073    /**
074     * Sets the inputFileName attribute value.
075     * 
076     * @param inputFileName The inputFileName to set.
077     */
078    public void setInputFileName(String inputFileName) {
079        this.inputFileName = inputFileName;
080    }
081
082    /**
083     * Gets the validFileName attribute.
084     * 
085     * @return Returns the validFileName.
086     */
087    public String getValidFileName() {
088        return validFileName;
089    }
090
091    /**
092     * Sets the validFileName attribute value.
093     * 
094     * @param validFileName The validFileName to set.
095     */
096    public void setValidFileName(String validFileName) {
097        this.validFileName = validFileName;
098    }
099}