Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.alert.domain;

import in.shop2020.alert.EntityType;

public class EntityMonitoringStatus {
        
        EntityType entityType; 
        boolean isActive;
        String defaultAlertGroup;
        
        public EntityType getEntityType() {
                return entityType;
        }
        public void setEntityType(EntityType entityType) {
                this.entityType = entityType;
        }
        public boolean isActive() {
                return isActive;
        }
        public void setActive(boolean isActive) {
                this.isActive = isActive;
        }
        public String getDefaultAlertGroup() {
                return defaultAlertGroup;
        }
        public void setDefaultAlertGroup(String defaultAlertGroup) {
                this.defaultAlertGroup = defaultAlertGroup;
        }
        
}