View Javadoc
1   /**
2    * Copyright 2011-2013 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.emergencyinfo.entity;
16  
17  import java.io.Serializable;
18  import javax.xml.bind.annotation.XmlRootElement;
19  
20  /**
21   *
22   * @author Joe Swanson <joseswan@umich.edu>
23   */
24  @XmlRootElement(name = "emergencyInfo")
25  public class EmergencyInfoImpl implements Serializable, EmergencyInfo {
26  
27      private Long emergencyInfoId;
28  	private String type;
29      private String title;
30  	private String link;
31      private String campus;
32      private int order;
33      private Long versionNumber;
34  
35  	/**
36  	 * @return the emergencyInfoId
37  	 */
38  	public Long getEmergencyInfoId() {
39  		return emergencyInfoId;
40  	}
41  
42  	/**
43  	 * @param emergencyInfoId the emergencyInfoId to set
44  	 */
45  	public void setEmergencyInfoId(Long emergencyInfoId) {
46  		this.emergencyInfoId = emergencyInfoId;
47  	}
48  
49  	/**
50  	 * @return the type
51  	 */
52  	public String getType() {
53  		return type;
54  	}
55  
56  	/**
57  	 * @param type the type to set
58  	 */
59  	public void setType(String type) {
60  		this.type = type;
61  	}
62  
63  	/**
64  	 * @return the title
65  	 */
66  	public String getTitle() {
67  		return title;
68  	}
69  
70  	/**
71  	 * @param title the title to set
72  	 */
73  	public void setTitle(String title) {
74  		this.title = title;
75  	}
76  
77  	/**
78  	 * @return the link
79  	 */
80  	public String getLink() {
81  		return link;
82  	}
83  
84  	/**
85  	 * @param link the link to set
86  	 */
87  	public void setLink(String link) {
88  		this.link = link;
89  	}
90  
91  	/**
92  	 * @return the campus
93  	 */
94  	public String getCampus() {
95  		return campus;
96  	}
97  
98  	/**
99  	 * @param campus the campus to set
100 	 */
101 	public void setCampus(String campus) {
102 		this.campus = campus;
103 	}
104 
105 	/**
106 	 * @return the order
107 	 */
108 	public int getOrder() {
109 		return order;
110 	}
111 
112 	/**
113 	 * @param order the order to set
114 	 */
115 	public void setOrder(int order) {
116 		this.order = order;
117 	}
118 
119 	/**
120 	 * @return the versionNumber
121 	 */
122 	public Long getVersionNumber() {
123 		return versionNumber;
124 	}
125 
126 	/**
127 	 * @param versionNumber the versionNumber to set
128 	 */
129 	public void setVersionNumber(Long versionNumber) {
130 		this.versionNumber = versionNumber;
131 	}
132 }