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 AlertedEntity {long id;EntityType entityType;int eventType;String entityIdentifier;Date lastAlertedTime;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 getLastAlertedTime() {return lastAlertedTime;}public void setLastAlertedTime(Date lastAlertedTime) {this.lastAlertedTime = lastAlertedTime;}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;}}