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;

public class SearchFilter {

        private EntityType entityType; 
        private int eventType; 
        private String entityIdentifier; 
        private long warnExpiryTime; 
        private long criticalExpiryTime; 
        private long agentId;
        private EntityProcessedState entityProcessedState; 
        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 long getWarnExpiryTime() {
                return warnExpiryTime;
        }
        public void setWarnExpiryTime(long warnExpiryTime) {
                this.warnExpiryTime = warnExpiryTime;
        }
        public long getCriticalExpiryTime() {
                return criticalExpiryTime;
        }
        public void setCriticalExpiryTime(long criticalExpiryTime) {
                this.criticalExpiryTime = criticalExpiryTime;
        }
        public long getAgentId() {
                return agentId;
        }
        public void setAgentId(long agentId) {
                this.agentId = agentId;
        }
        public EntityProcessedState getEntityProcessedState() {
                return entityProcessedState;
        }
        public void setEntityProcessedState(EntityProcessedState entityProcessedState) {
                this.entityProcessedState = entityProcessedState;
        }
        
}