com.airbus_cyber_security.graylog.alert.AlertRule 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 org.joda.time.DateTime;
import java.util.List;
public interface AlertRule {
public String getTitle();
public String getStreamID();
public String getEventID();
public String getNotificationID();
public DateTime getCreatedAt();
public String getCreatorUserId();
public DateTime getLastModified();
public String getDescription();
public String getConditionType();
public String getSecondStreamID();
public String getSecondEventID();
public String getPipelineID();
public String getPipelineRuleID();
public List getPipelineFieldRules();
public String getSecondPipelineID();
public String getSecondPipelineRuleID();
public List getSecondPipelineFieldRules();
}