org.kie.internal.ruleunit.RuleUnitVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-internal Show documentation
Show all versions of kie-internal Show documentation
The Drools and jBPM internal API which is NOT backwards compatible between releases.
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();
}