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.EntityType;
4
 
5
public class EntityMonitoringStatus {
6
 
7
	EntityType entityType; 
8
	boolean isActive;
9
	String defaultAlertGroup;
10
 
11
	public EntityType getEntityType() {
12
		return entityType;
13
	}
14
	public void setEntityType(EntityType entityType) {
15
		this.entityType = entityType;
16
	}
17
	public boolean isActive() {
18
		return isActive;
19
	}
20
	public void setActive(boolean isActive) {
21
		this.isActive = isActive;
22
	}
23
	public String getDefaultAlertGroup() {
24
		return defaultAlertGroup;
25
	}
26
	public void setDefaultAlertGroup(String defaultAlertGroup) {
27
		this.defaultAlertGroup = defaultAlertGroup;
28
	}
29
 
30
}