View Javadoc

1   /*
2    * Copyright 2011-2012 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.bus.entity;
16  
17  import java.io.Serializable;
18  import javax.xml.bind.annotation.XmlRootElement;
19  
20  @XmlRootElement(name = "busAlert")
21  public class BusAlertImpl implements BusAlert, Serializable {
22  
23  	private String title;
24  	private String message;
25  	private String color;
26  	private String messageType;
27  
28  	@Override
29  	public String getTitle() {
30  		return title;
31  	}
32  
33  	@Override
34  	public void setTitle(String title) {
35  		this.title = title;
36  	}
37  	
38  	@Override
39  	public String getMessage() {
40  		return message;
41  	}
42  
43  	@Override
44  	public void setMessage(String message) {
45  		this.message = message;
46  	}
47  
48  	@Override
49  	public String getColor() {
50  		return color;
51  	}
52  
53  	@Override
54  	public void setColor(String color) {
55  		this.color = color;
56  	}
57  
58  	@Override
59  	public String getMessageType() {
60  		return messageType;
61  	}
62  
63  	@Override
64  	public void setMessageType(String messageType) {
65  		this.messageType = messageType;
66  	}
67  	
68  }