View Javadoc
1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  package org.kuali.mobility.dining.entity;
16  
17  import javax.xml.bind.annotation.XmlAccessType;
18  import javax.xml.bind.annotation.XmlAccessorType;
19  import javax.xml.bind.annotation.XmlElement;
20  import javax.xml.bind.annotation.XmlRootElement;
21  import java.util.List;
22  
23  /**
24   * @author Kuali Mobility Team (mobility.collab@kuali.org)
25   */
26  @XmlRootElement(name="diningHallGroup")
27  @XmlAccessorType(XmlAccessType.FIELD)
28  public class DiningHallGroup {
29  
30      private String name;
31  
32      @XmlElement( name="diningHall" )
33      private List<DiningHall> diningHalls;
34  
35      public String getName() {
36          return name;
37      }
38  
39      public void setName(String name) {
40          this.name = name;
41      }
42  
43      public List<DiningHall> getDiningHalls() {
44          return diningHalls;
45      }
46  
47      public void setDiningHalls(List<DiningHall> diningHalls) {
48          this.diningHalls = diningHalls;
49      }
50  }