io.logz.sawmill.parser.ConditionDefinition Maven / Gradle / Ivy
The newest version!
package io.logz.sawmill.parser;
import java.util.Map;
public class ConditionDefinition {
private String type;
private Map config;
public ConditionDefinition() {}
public ConditionDefinition(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