org.graylog.plugins.threatintel.ThreatIntelPluginMetaData Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog.plugins.threatintel;
import org.graylog2.plugin.PluginMetaData;
import org.graylog2.plugin.ServerStatus;
import org.graylog2.plugin.Version;
import java.net.URI;
import java.util.Collections;
import java.util.Set;
public class ThreatIntelPluginMetaData implements PluginMetaData {
private static final String PLUGIN_PROPERTIES = "org.graylog.plugins.graylog-plugin-threatintel/graylog-plugin.properties";
@Override
public String getUniqueId() {
return "org.graylog.plugins.threatintel.ThreatIntelPlugin";
}
@Override
public String getName() {
return "Threat Intelligence Plugin";
}
@Override
public String getAuthor() {
return "Graylog, Inc.";
}
@Override
public URI getURL() {
return URI.create("https://github.com/Graylog2/graylog-plugin-threatintel");
}
@Override
public Version getVersion() {
return Version.CURRENT_CLASSPATH;
}
@Override
public String getDescription() {
return "Threat intelligence database lookup functions for the Graylog Pipeline Processor";
}
@Override
public Version getRequiredVersion() {
return Version.CURRENT_CLASSPATH;
}
@Override
public Set getRequiredCapabilities() {
return Collections.emptySet();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy