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

Packages that use AOPDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of AOPDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return AOPDefinition
 AOPDefinition AOPDefinition.after(String afterUri)
          Uses a AOP after.
 AOPDefinition AOPDefinition.afterFinally(String afterUri)
          Uses a AOP after with after being invoked in a finally block.
 AOPDefinition ProcessorDefinition.aop()
          Wraps the sub route using AOP allowing you to do before and after work (AOP around).
 AOPDefinition AOPDefinition.around(String beforeUri, String afterUri)
          Uses a AOP around.
 AOPDefinition AOPDefinition.aroundFinally(String beforeUri, String afterUri)
          Uses a AOP around with after being invoked in a finally block
 AOPDefinition AOPDefinition.before(String beforeUri)
          Uses a AOP before.
 



Apache CAMEL