Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5519 amar.kumar 1
package in.shop2020.alert.domain;
2
 
3
import in.shop2020.alert.EntityProcessedState;
4
import in.shop2020.alert.EntityType;
5
 
6
import java.util.Date;
7
 
8
public class AlertedEntity {
9
	long id;
10
	EntityType entityType;
11
	int eventType;
12
	String entityIdentifier;
13
	Date lastAlertedTime;
14
	String entityProperties;
15
	EntityProcessedState entityProcessedState;
16
 
17
 
18
	public long getId() {
19
		return id;
20
	}
21
	public void setId(long id) {
22
		this.id = id;
23
	}
24
	public EntityType getEntityType() {
25
		return entityType;
26
	}
27
	public void setEntityType(EntityType entityType) {
28
		this.entityType = entityType;
29
	}
30
	public int getEventType() {
31
		return eventType;
32
	}
33
	public void setEventType(int eventType) {
34
		this.eventType = eventType;
35
	}
36
	public String getEntityIdentifier() {
37
		return entityIdentifier;
38
	}
39
	public void setEntityIdentifier(String entityIdentifier) {
40
		this.entityIdentifier = entityIdentifier;
41
	}
42
	public Date getLastAlertedTime() {
43
		return lastAlertedTime;
44
	}
45
	public void setLastAlertedTime(Date lastAlertedTime) {
46
		this.lastAlertedTime = lastAlertedTime;
47
	}
48
	public String getEntityProperties() {
49
		return entityProperties;
50
	}
51
	public void setEntityProperties(String entityProperties) {
52
		this.entityProperties = entityProperties;
53
	}
54
	public EntityProcessedState getEntityProcessedState() {
55
		return entityProcessedState;
56
	}
57
	public void setEntityProcessedState(EntityProcessedState entityProcessedState) {
58
		this.entityProcessedState = entityProcessedState;
59
	}
60
 
61
}