org.apache.camel.builder
Class AdviceWithTasks

java.lang.Object
  extended by org.apache.camel.builder.AdviceWithTasks

public final class AdviceWithTasks
extends Object

AdviceWithTask tasks which are used by the AdviceWithRouteBuilder.


Method Summary
static AdviceWithTask afterById(RouteDefinition route, String id, ProcessorDefinition after)
           
static AdviceWithTask afterByToString(RouteDefinition route, String toString, ProcessorDefinition after)
           
static AdviceWithTask beforeById(RouteDefinition route, String id, ProcessorDefinition before)
           
static AdviceWithTask beforeByToString(RouteDefinition route, String toString, ProcessorDefinition before)
           
static AdviceWithTask removeById(RouteDefinition route, String id)
           
static AdviceWithTask removeByToString(RouteDefinition route, String toString)
           
static AdviceWithTask replaceById(RouteDefinition route, String id, ProcessorDefinition replace)
           
static AdviceWithTask replaceByToString(RouteDefinition route, String toString, ProcessorDefinition replace)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

replaceByToString

public static AdviceWithTask replaceByToString(RouteDefinition route,
                                               String toString,
                                               ProcessorDefinition replace)

replaceById

public static AdviceWithTask replaceById(RouteDefinition route,
                                         String id,
                                         ProcessorDefinition replace)

removeByToString

public static AdviceWithTask removeByToString(RouteDefinition route,
                                              String toString)

removeById

public static AdviceWithTask removeById(RouteDefinition route,
                                        String id)

beforeByToString

public static AdviceWithTask beforeByToString(RouteDefinition route,
                                              String toString,
                                              ProcessorDefinition before)

beforeById

public static AdviceWithTask beforeById(RouteDefinition route,
                                        String id,
                                        ProcessorDefinition before)

afterByToString

public static AdviceWithTask afterByToString(RouteDefinition route,
                                             String toString,
                                             ProcessorDefinition after)

afterById

public static AdviceWithTask afterById(RouteDefinition route,
                                       String id,
                                       ProcessorDefinition after)


Apache CAMEL