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

org.graylog2.plugin.lookup.LookupDataAdapterConfiguration Maven / Gradle / Ivy

There is a newer version: 6.0.6
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog2.plugin.lookup;

import com.google.common.collect.Multimap;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

import java.util.Optional;

@JsonTypeInfo(
        use = JsonTypeInfo.Id.NAME,
        include = JsonTypeInfo.As.PROPERTY,
        property = LookupDataAdapterConfiguration.TYPE_FIELD,
        visible = true,
        defaultImpl = FallbackAdapterConfig.class)
public interface LookupDataAdapterConfiguration {
    String TYPE_FIELD = "type";

    @JsonProperty(TYPE_FIELD)
    String type();

    /**
     * 

Override this method to check for logical errors in the configuration, such as missing * files, or invalid combinations of options. Prefer validation annotations for simple * per-property validations rules, such as min/max values, non-empty strings etc.

* *

By default the configuration has no extra validation errors (i.e. the result of this * method is {@link Optional#empty()}.

* *

Returning failing validations here does not prevent saving the configuration!

* * @return optionally map of property name to error messages */ @JsonIgnore default Optional> validate() { return Optional.empty(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy