Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4399 rajveer 1
package in.shop2020.hotspot.dashbaord.shared.actions;
2
 
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
 
5
public class Alert implements IsSerializable{
6
	private long alertId;
7
	private String alertType;
8
	private long createdAt;
9
	private String description;
10
 
11
 
12
 
13
 
14
    @SuppressWarnings("unused")
15
	private Alert(){}
16
 
17
	public Alert(long alertId, String alertType, long createdAt, String description) {
18
		super();
19
		this.alertId = alertId;
20
		this.alertType = alertType;
21
		this.createdAt = createdAt;
22
		this.description = description;
23
	}
24
 
25
	public long getOrderId() {
26
		return alertId;
27
	}
28
 
29
	public String getDescription() {
30
		return description;
31
	}
32
 
33
	public long getCreatedAt() {
34
		return createdAt;
35
	}
36
 
37
	public String getAlertType() {
38
		return alertType;
39
	}
40
}