Uses of Class
org.apache.camel.model.rest.RestDefinition

Packages that use RestDefinition
org.apache.camel The core Camel API. 
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
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.model.rest The JAXB POJOs for the REST DSL 
 

Uses of RestDefinition in org.apache.camel
 

Methods in org.apache.camel that return types with arguments of type RestDefinition
 List<RestDefinition> CamelContext.getRestDefinitions()
          Deprecated. use ModelCamelContext.getRestDefinitions()
 

Method parameters in org.apache.camel with type arguments of type RestDefinition
 void CamelContext.addRestDefinitions(Collection<RestDefinition> restDefinitions)
          Deprecated. 
 

Uses of RestDefinition in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return RestDefinition
 RestDefinition RouteBuilder.rest()
          Creates a new REST service
 RestDefinition RouteBuilder.rest(String path)
          Creates a new REST service
 

Methods in org.apache.camel.builder with parameters of type RestDefinition
protected  void RouteBuilder.configureRest(RestDefinition rest)
           
 

Uses of RestDefinition in org.apache.camel.impl
 

Methods in org.apache.camel.impl that return types with arguments of type RestDefinition
 List<RestDefinition> DefaultCamelContext.getRestDefinitions()
           
 

Method parameters in org.apache.camel.impl with type arguments of type RestDefinition
 void DefaultCamelContext.addRestDefinitions(Collection<RestDefinition> restDefinitions)
           
 

Uses of RestDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return RestDefinition
 RestDefinition ProcessorDefinition.endRest()
          Ends the current block and returns back to the rest() DSL.
 RestDefinition RouteDefinition.getRestDefinition()
           
 

Methods in org.apache.camel.model that return types with arguments of type RestDefinition
 List<RestDefinition> ModelCamelContext.getRestDefinitions()
          Returns a list of the current REST definitions
 List<RestDefinition> RestContextRefDefinition.lookupRests(CamelContext camelContext)
           
static List<RestDefinition> RestContextRefDefinitionHelper.lookupRests(CamelContext camelContext, String ref)
          Lookup the rests from the RestContextRefDefinition.
 

Methods in org.apache.camel.model with parameters of type RestDefinition
 void RouteDefinition.setRestDefinition(RestDefinition restDefinition)
           
 

Method parameters in org.apache.camel.model with type arguments of type RestDefinition
 void ModelCamelContext.addRestDefinitions(Collection<RestDefinition> restDefinitions)
          Adds a collection of rest definitions to the context
 

Uses of RestDefinition in org.apache.camel.model.rest
 

Methods in org.apache.camel.model.rest that return RestDefinition
 RestDefinition RestDefinition.bindingMode(RestBindingMode mode)
           
 RestDefinition RestDefinition.consumes(String mediaType)
           
protected  RestDefinition RestsDefinition.createRest()
           
 RestDefinition RestDefinition.delete()
           
 RestDefinition VerbDefinition.delete()
           
 RestDefinition RestDefinition.delete(String uri)
           
 RestDefinition VerbDefinition.delete(String uri)
           
 RestDefinition RestDefinition.description(String text)
           
 RestDefinition RestDefinition.description(String id, String text, String lang)
           
 RestDefinition RestDefinition.get()
           
 RestDefinition VerbDefinition.get()
           
 RestDefinition RestDefinition.get(String uri)
           
 RestDefinition VerbDefinition.get(String uri)
           
 RestDefinition VerbDefinition.getRest()
           
 RestDefinition RestDefinition.head()
           
 RestDefinition VerbDefinition.head()
           
 RestDefinition RestDefinition.head(String uri)
           
 RestDefinition VerbDefinition.head(String uri)
           
 RestDefinition RestDefinition.id(String id)
           
 RestDefinition RestDefinition.outType(Class<?> classType)
           
 RestDefinition RestDefinition.outTypeList(Class<?> classType)
           
 RestDefinition RestDefinition.path(String path)
          To set the base path of this REST service
 RestDefinition RestDefinition.post()
           
 RestDefinition VerbDefinition.post()
           
 RestDefinition RestDefinition.post(String uri)
           
 RestDefinition VerbDefinition.post(String uri)
           
 RestDefinition RestDefinition.produces(String mediaType)
           
 RestDefinition RestDefinition.put()
           
 RestDefinition VerbDefinition.put()
           
 RestDefinition RestDefinition.put(String uri)
           
 RestDefinition VerbDefinition.put(String uri)
           
 RestDefinition RestsDefinition.rest()
          Creates a rest DSL
 RestDefinition RestsDefinition.rest(RestDefinition rest)
          Adds the RestsDefinition
 RestDefinition RestsDefinition.rest(String uri)
          Creates a rest DSL
 RestDefinition RestDefinition.to(String uri)
          Routes directly to the given endpoint.
 RestDefinition RestDefinition.type(Class<?> classType)
           
 RestDefinition RestDefinition.typeList(Class<?> classType)
           
 RestDefinition RestDefinition.verb(String verb)
           
 RestDefinition VerbDefinition.verb(String verb)
           
 RestDefinition RestDefinition.verb(String verb, String uri)
           
 RestDefinition VerbDefinition.verb(String verb, String uri)
           
 

Methods in org.apache.camel.model.rest that return types with arguments of type RestDefinition
 List<RestDefinition> RestsDefinition.getRests()
           
 List<RestDefinition> RestContainer.getRests()
          Returns the RESTs
 

Methods in org.apache.camel.model.rest with parameters of type RestDefinition
 RestDefinition RestsDefinition.rest(RestDefinition rest)
          Adds the RestsDefinition
 void VerbDefinition.setRest(RestDefinition rest)
           
 

Method parameters in org.apache.camel.model.rest with type arguments of type RestDefinition
 void RestsDefinition.setRests(List<RestDefinition> rests)
           
 void RestContainer.setRests(List<RestDefinition> rests)
          Sets the RESTs to use
 



Apache Camel