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

io.logz.sawmill.parser.ProcessorDefinition Maven / Gradle / Ivy

The newest version!
package io.logz.sawmill.parser;

import java.util.Map;

public class ProcessorDefinition {
    private String type;
    private Map config;

    public ProcessorDefinition(String type, Map config) {
        this.type = type;
        this.config = config;
    }

    public String getType() {
        return type;
    }

    public Map getConfig() {
        return config;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy