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

org.drools.compiler.compiler.DroolsWarning Maven / Gradle / Ivy

package org.drools.compiler.compiler;

import org.kie.internal.builder.ResultSeverity;
import org.kie.api.io.Resource;

public abstract class DroolsWarning extends BaseKnowledgeBuilderResultImpl {

    public DroolsWarning(Resource resource) {
        super(resource);
    }

    @Override
    public ResultSeverity getSeverity() {
        return ResultSeverity.WARNING;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy