All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.envision.event.bean.EventEx Maven / Gradle / Ivy

The newest version!
package com.envision.event.bean;

import com.envision.event.rule.EventRule;

/**
 * 扩展的事件对象,此对象中的属性用于内部使用(例如排查问题等),对外部不可见
 * 
 * @author kang.ouyang
 *
 */
public class EventEx extends Event {
	private Integer matchRuleID;

	public EventEx() {

	}

	public EventEx(DataPoint point, EventRule rule) {
		super(point, rule);
		this.matchRuleID = rule.getId();
	}

	public Integer getMatchRuleID() {
		return matchRuleID;
	}

	public void setMatchRuleID(Integer matchRuleID) {
		this.matchRuleID = matchRuleID;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy