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.alerts.entity;
16  
17  import javax.xml.bind.annotation.XmlRootElement;
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  @XmlRootElement(name="alerts")
22  public class Alerts {
23  	private String campusCode;
24  	private long updateTime;
25  	private List<Alert> alerts;
26  	
27  	public Alerts() {
28  		alerts = new ArrayList<Alert>();
29  	}
30  	
31  	public String getCampusCode() {
32  		return campusCode;
33  	}
34  	public void setCampusCode(String campusCode) {
35  		this.campusCode = campusCode;
36  	}
37  	public long getUpdateTime() {
38  		return updateTime;
39  	}
40  	public void setUpdateTime(long updateTime) {
41  		this.updateTime = updateTime;
42  	}
43  	public List<Alert> getAlerts() {
44  		return alerts;
45  	}
46  	public void setAlerts(List<Alert> alerts) {
47  		this.alerts = alerts;
48  	}
49  	
50  }