Package org.apache.camel.model
Interface PreconditionContainer
-
- All Superinterfaces:
org.apache.camel.LineNumberAware,org.apache.camel.NamedNode
- All Known Implementing Classes:
RouteConfigurationDefinition,RouteDefinition
public interface PreconditionContainer extends org.apache.camel.NamedNodeIndicates that the configuration element holds a precondition to determine if it should be included or not.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPrecondition()The predicate of the precondition in simple language to evaluate in order to determine if it should be included or not.voidsetPrecondition(String precondition)The predicate of the precondition in simple language to evaluate in order to determine if it should be included or not.
-
-
-
Method Detail
-
getPrecondition
String getPrecondition()
The predicate of the precondition in simple language to evaluate in order to determine if it should be included or not.
-
setPrecondition
void setPrecondition(String precondition)
The predicate of the precondition in simple language to evaluate in order to determine if it should be included or not.
-
-