Uses of Interface
org.apache.camel.spi.Policy

Packages that use Policy
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of Policy in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Policy
 class NoPolicy
          Represents an Policy which adds no interceptors.
 

Uses of Policy in org.apache.camel.model
 

Fields in org.apache.camel.model with type parameters of type Policy
protected  Class<? extends Policy> TransactedDefinition.type
           
protected  Class<? extends Policy> PolicyDefinition.type
           
 

Methods in org.apache.camel.model that return Policy
protected static Policy TransactedDefinition.doResolvePolicy(RouteContext routeContext, String ref, Class<? extends Policy> type)
           
protected  Policy TransactedDefinition.resolvePolicy(RouteContext routeContext)
           
protected  Policy PolicyDefinition.resolvePolicy(RouteContext routeContext)
           
 

Methods in org.apache.camel.model with parameters of type Policy
 PolicyDefinition ProcessorDefinition.policy(Policy policy)
          Apply a Policy.
 

Method parameters in org.apache.camel.model with type arguments of type Policy
protected static Policy TransactedDefinition.doResolvePolicy(RouteContext routeContext, String ref, Class<? extends Policy> type)
           
 void TransactedDefinition.setType(Class<? extends Policy> type)
          Sets a policy type that this defition should scope within.
 void PolicyDefinition.setType(Class<? extends Policy> type)
          Sets a policy type that this defition should scope within.
 

Constructors in org.apache.camel.model with parameters of type Policy
PolicyDefinition(Policy policy)
           
TransactedDefinition(Policy policy)
           
 

Uses of Policy in org.apache.camel.spi
 

Subinterfaces of Policy in org.apache.camel.spi
 interface TransactedPolicy
          A marker for defining the policy to be used for applying transaction to routes.
 



Apache CAMEL