Package org.apache.camel
Interface NamedRoute
-
public interface NamedRouteRepresents a node in therouteswhich is identified as a route.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEndpointUrl()Gets the route endpoint url.NamedNodegetInput()Gets the route inputStringgetRouteId()Gets the route id.booleanisCreatedFromRest()Is the route created from Rest DSLbooleanisCreatedFromTemplate()Is the route created from template;
-
-
-
Method Detail
-
getRouteId
String getRouteId()
Gets the route id.
-
getEndpointUrl
String getEndpointUrl()
Gets the route endpoint url.
-
isCreatedFromTemplate
boolean isCreatedFromTemplate()
Is the route created from template;
-
isCreatedFromRest
boolean isCreatedFromRest()
Is the route created from Rest DSL
-
getInput
NamedNode getInput()
Gets the route input
-
-