com.airbus_cyber_security.graylog.alert.FieldRule 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;
public interface FieldRule {
public String getID();
public String getField();
public int getType();
public String getValue();
}