Uses of Class
org.apache.camel.model.WhenDefinition

Packages that use WhenDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.processor.exceptionpolicy Exception policy startegies for Dead Letter Channel pattern. 
 

Uses of WhenDefinition in org.apache.camel.model
 

Subclasses of WhenDefinition in org.apache.camel.model
 class WhenSkipSendToEndpointDefinition
           
 

Methods in org.apache.camel.model that return WhenDefinition
 WhenDefinition OnExceptionDefinition.getOnWhen()
           
 WhenDefinition OnCompletionDefinition.getOnWhen()
           
 WhenDefinition CatchDefinition.getOnWhen()
           
 

Methods in org.apache.camel.model that return types with arguments of type WhenDefinition
 List<WhenDefinition> ChoiceDefinition.getWhenClauses()
           
 

Methods in org.apache.camel.model with parameters of type WhenDefinition
 void OnExceptionDefinition.setOnWhen(WhenDefinition onWhen)
           
 void OnCompletionDefinition.setOnWhen(WhenDefinition onWhen)
           
 void CatchDefinition.setOnWhen(WhenDefinition onWhen)
           
 

Method parameters in org.apache.camel.model with type arguments of type WhenDefinition
 void ChoiceDefinition.setWhenClauses(List<WhenDefinition> whenClauses)
           
 

Uses of WhenDefinition in org.apache.camel.processor.exceptionpolicy
 

Methods in org.apache.camel.processor.exceptionpolicy that return WhenDefinition
 WhenDefinition ExceptionPolicyKey.getWhen()
           
 

Methods in org.apache.camel.processor.exceptionpolicy with parameters of type WhenDefinition
static ExceptionPolicyKey ExceptionPolicyKey.newInstance(Class<? extends Throwable> exceptionClass, WhenDefinition when)
          Deprecated. will be removed in the near future. Use the constructor instead.
 

Constructors in org.apache.camel.processor.exceptionpolicy with parameters of type WhenDefinition
ExceptionPolicyKey(Class<? extends Throwable> exceptionClass, WhenDefinition when)
          Deprecated. will be removed in the near future, use the other constructor
ExceptionPolicyKey(String routeId, Class<? extends Throwable> exceptionClass, WhenDefinition when)
          Key for exception clause
 



Apache CAMEL