com.airbus_cyber_security.graylog.alert.AlertRuleStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-plugin-alert-wizard Show documentation
Show all versions of graylog-plugin-alert-wizard Show documentation
Graylog ${project.artifactId} plugin.
package com.airbus_cyber_security.graylog.alert;
import java.util.List;
public interface AlertRuleStream {
public String getID();
public String getMatchingType();
public List getFieldRules();
}