| org.drools.ruleflow.core.Constraint
All known Subclasses: org.drools.ruleflow.core.impl.ConstraintImpl,
Constraint | public interface Constraint (Code) | | Represents a constraint in a RuleFlow.
Can be used to specify conditions in (X)OR-splits.
author: Kris Verlaenen |
getConstraint | String getConstraint()(Code) | | Typically this method returns the constraint
the constraint |
getName | String getName()(Code) | | Returns the name of the constraint
the name of the constraint |
getPriority | int getPriority()(Code) | | Returns the priority of the constriant
the priority of the constraint |
setConstraint | void setConstraint(String constraint)(Code) | | Method for setting the constraint
Parameters: constraint - the constraint |
setName | void setName(String name)(Code) | | Sets the name of the constraint
Parameters: name - the name of the constraint |
setPriority | void setPriority(int priority)(Code) | | Method for setting the priority of the constraint
Parameters: priority - the priority of the constraint |
|
|