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

org.kie.internal.ruleunit.RuleUnitVariable Maven / Gradle / Ivy

Go to download

The Drools and jBPM internal API which is NOT backwards compatible between releases.

There is a newer version: 9.44.0.Final
Show newest version
package org.kie.internal.ruleunit;

import java.lang.reflect.Type;

public interface RuleUnitVariable {

    boolean isDataSource();

    String getName();

    String getter();

    String setter();

    Type getType();

    Class getDataSourceParameterType();

    Class getBoxedVarType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy