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.report;
017    
018    import java.util.Set;
019    
020    public class PreScrubberReportData {
021        protected int inputRecords;
022        protected int outputRecords;
023        protected Set<String> accountsWithNoCharts;
024        protected Set<String> accountsWithMultipleCharts;
025        
026        public PreScrubberReportData(int inputRecords, int outputRecords, Set<String> accountsWithNoCharts, Set<String> accountsWithMultipleCharts) {
027            this.inputRecords = inputRecords;
028            this.outputRecords = outputRecords;
029            this.accountsWithMultipleCharts = accountsWithMultipleCharts;
030            this.accountsWithNoCharts = accountsWithNoCharts;
031        }
032        
033        public int getInputRecords() {
034            return inputRecords;
035        }
036        public void setInputRecords(int inputRecords) {
037            this.inputRecords = inputRecords;
038        }
039        public int getOutputRecords() {
040            return outputRecords;
041        }
042        public void setOutputRecords(int outputRecords) {
043            this.outputRecords = outputRecords;
044        }
045        public Set<String> getAccountsWithNoCharts() {
046            return accountsWithNoCharts;
047        }
048        public void setAccountsWithNoCharts(Set<String> accountsWithNoCharts) {
049            this.accountsWithNoCharts = accountsWithNoCharts;
050        }
051        public Set<String> getAccountsWithMultipleCharts() {
052            return accountsWithMultipleCharts;
053        }
054        public void setAccountsWithMultipleCharts(Set<String> accountsWithMultipleCharts) {
055            this.accountsWithMultipleCharts = accountsWithMultipleCharts;
056        }
057    }