Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.alert.domain;

import in.shop2020.alert.EntityProcessedState;
import in.shop2020.alert.EntityType;

import java.util.Date;

public class MonitoredEntity {
        
        long id;
        EntityType entityType;
        int eventType;
        String entityIdentifier;
        Date warnExpiryTime;
        Date criticalExpiryTime;
        String entityProperties;
        EntityProcessedState entityProcessedState;
        
        
        public long getId() {
                return id;
        }
        public void setId(long id) {
                this.id = id;
        }
        public EntityType getEntityType() {
                return entityType;
        }
        public void setEntityType(EntityType entityType) {
                this.entityType = entityType;
        }
        public int getEventType() {
                return eventType;
        }
        public void setEventType(int eventType) {
                this.eventType = eventType;
        }
        public String getEntityIdentifier() {
                return entityIdentifier;
        }
        public void setEntityIdentifier(String entityIdentifier) {
                this.entityIdentifier = entityIdentifier;
        }
        public Date getWarnExpiryTime() {
                return warnExpiryTime;
        }
        public void setWarnExpiryTime(Date warnExpiryTime) {
                this.warnExpiryTime = warnExpiryTime;
        }
        public Date getCriticalExpiryTime() {
                return criticalExpiryTime;
        }
        public void setCriticalExpiryTime(Date criticalExpiryTime) {
                this.criticalExpiryTime = criticalExpiryTime;
        }
        public String getEntityProperties() {
                return entityProperties;
        }
        public void setEntityProperties(String entityProperties) {
                this.entityProperties = entityProperties;
        }
        public EntityProcessedState getEntityProcessedState() {
                return entityProcessedState;
        }
        public void setEntityProcessedState(EntityProcessedState entityProcessedState) {
                this.entityProcessedState = entityProcessedState;
        }
        
}