View Javadoc

1   /*
2    * Copyright 2013 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 1.0 (the
5    * "License"); 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/ecl1.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, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations under
14   * the License.
15   */
16  package org.kuali.student.enrollment.class2.courseoffering.service.adapter;
17  
18  import org.slf4j.Logger;
19  import org.slf4j.LoggerFactory;
20  
21  /**
22   *
23   * Holds the counts of activity offerings, activity offering clusters, total and invalid registration groups.
24   * 
25   * @author Kuali Student Team 
26   *
27   */
28  public class AutogenCount {
29      private static final Logger log = LoggerFactory
30              .getLogger(AutogenCount.class);
31  
32      private Integer numberOfActivityOfferings;
33      private Integer numberOfActivityOfferingClusters;
34      private Integer numberOfRegistrationGroups;
35      private Integer numberOfInvalidRegistrationGroups;
36      
37      /**
38       * 
39       */
40      public AutogenCount() {
41      }
42  
43  
44      
45  
46  
47      /**
48       * @param numberOfActivityOfferings the numberOfActivityOfferings to set
49       */
50      public void setNumberOfActivityOfferings(Integer numberOfActivityOfferings) {
51          this.numberOfActivityOfferings = numberOfActivityOfferings;
52      }
53  
54  
55  
56  
57  
58      /**
59       * @param numberOfActivityOfferingClusters the numberOfActivityOfferingClusters to set
60       */
61      public void setNumberOfActivityOfferingClusters(
62              Integer numberOfActivityOfferingClusters) {
63          this.numberOfActivityOfferingClusters = numberOfActivityOfferingClusters;
64      }
65  
66  
67  
68  
69  
70      /**
71       * @param numberOfRegistrationGroups the numberOfRegistrationGroups to set
72       */
73      public void setNumberOfRegistrationGroups(Integer numberOfRegistrationGroups) {
74          this.numberOfRegistrationGroups = numberOfRegistrationGroups;
75      }
76  
77  
78  
79  
80  
81      /**
82       * @param numberOfInvalidRegistrationGroups the numberOfInvalidRegistrationGroups to set
83       */
84      public void setNumberOfInvalidRegistrationGroups(
85              Integer numberOfInvalidRegistrationGroups) {
86          this.numberOfInvalidRegistrationGroups = numberOfInvalidRegistrationGroups;
87      }
88  
89  
90  
91  
92  
93      /**
94       * @return the numberOfActivityOfferings
95       */
96      public Integer getNumberOfActivityOfferings() {
97          return numberOfActivityOfferings;
98      }
99  
100 
101     /**
102      * @return the numberOfActivityOfferingClusters
103      */
104     public Integer getNumberOfActivityOfferingClusters() {
105         return numberOfActivityOfferingClusters;
106     }
107 
108 
109     /**
110      * @return the numberOfRegistrationGroups
111      */
112     public Integer getNumberOfRegistrationGroups() {
113         return numberOfRegistrationGroups;
114     }
115 
116 
117     /**
118      * @return the numberOfInvalidRegistrationGroups
119      */
120     public Integer getNumberOfInvalidRegistrationGroups() {
121         return numberOfInvalidRegistrationGroups;
122     }
123     
124     
125     
126 }