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

Packages that use Policy
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.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 definition should scope within.
 void PolicyDefinition.setType(Class<? extends Policy> type)
          Sets a policy type that this definition 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 AuthorizationPolicy
          A marker for defining the policy to be used for applying authorization to routes.
 interface TransactedPolicy
          A marker for defining the policy to be used for applying transaction to routes.
 



Apache Camel