View Javadoc
1   /*
2    * Copyright 2009 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.report;
17  
18  import java.util.Set;
19  
20  public class PreScrubberReportData {
21      protected int inputRecords;
22      protected int outputRecords;
23      protected Set<String> accountsWithNoCharts;
24      protected Set<String> accountsWithMultipleCharts;
25      
26      public PreScrubberReportData(int inputRecords, int outputRecords, Set<String> accountsWithNoCharts, Set<String> accountsWithMultipleCharts) {
27          this.inputRecords = inputRecords;
28          this.outputRecords = outputRecords;
29          this.accountsWithMultipleCharts = accountsWithMultipleCharts;
30          this.accountsWithNoCharts = accountsWithNoCharts;
31      }
32      
33      public int getInputRecords() {
34          return inputRecords;
35      }
36      public void setInputRecords(int inputRecords) {
37          this.inputRecords = inputRecords;
38      }
39      public int getOutputRecords() {
40          return outputRecords;
41      }
42      public void setOutputRecords(int outputRecords) {
43          this.outputRecords = outputRecords;
44      }
45      public Set<String> getAccountsWithNoCharts() {
46          return accountsWithNoCharts;
47      }
48      public void setAccountsWithNoCharts(Set<String> accountsWithNoCharts) {
49          this.accountsWithNoCharts = accountsWithNoCharts;
50      }
51      public Set<String> getAccountsWithMultipleCharts() {
52          return accountsWithMultipleCharts;
53      }
54      public void setAccountsWithMultipleCharts(Set<String> accountsWithMultipleCharts) {
55          this.accountsWithMultipleCharts = accountsWithMultipleCharts;
56      }
57  }