|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CamelExecutionException | |
---|---|
org.apache.camel | The JAXB POJOs for the XML Configuration of the routing rules. |
org.apache.camel.impl | Default implementation classes for Camel Core |
org.apache.camel.util | Utility classes used by the core of Camel and useful for Camel component developers |
Uses of CamelExecutionException in org.apache.camel |
---|
Methods in org.apache.camel that throw CamelExecutionException | ||
---|---|---|
|
ProducerTemplate.extractFutureBody(java.util.concurrent.Future<java.lang.Object> future,
java.lang.Class<T> type)
Gets the response body from the future handle, will wait until the response is ready. |
|
|
ProducerTemplate.extractFutureBody(java.util.concurrent.Future<java.lang.Object> future,
long timeout,
java.util.concurrent.TimeUnit unit,
java.lang.Class<T> type)
Gets the response body from the future handle, will wait at most the given time for the response to be ready. |
|
java.lang.Object |
ProducerTemplate.requestBody(Endpoint endpoint,
java.lang.Object body)
Send the body to an endpoint returning any result output body. |
|
|
ProducerTemplate.requestBody(Endpoint endpoint,
java.lang.Object body,
java.lang.Class<T> type)
Send the body to an endpoint returning any result output body. |
|
java.lang.Object |
ProducerTemplate.requestBody(java.lang.Object body)
Sends the body to the default endpoint and returns the result content Uses an ExchangePattern.InOut message exchange pattern. |
|
|
ProducerTemplate.requestBody(java.lang.Object body,
java.lang.Class<T> type)
Sends the body to the default endpoint and returns the result content Uses an ExchangePattern.InOut message exchange pattern. |
|
java.lang.Object |
ProducerTemplate.requestBody(java.lang.String endpointUri,
java.lang.Object body)
Send the body to an endpoint returning any result output body. |
|
|
ProducerTemplate.requestBody(java.lang.String endpointUri,
java.lang.Object body,
java.lang.Class<T> type)
Send the body to an endpoint returning any result output body. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeader(Endpoint endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Send the body to an endpoint returning any result output body. |
|
|
ProducerTemplate.requestBodyAndHeader(Endpoint endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue,
java.lang.Class<T> type)
Send the body to an endpoint returning any result output body. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeader(java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to the default endpoint and returns the result content Uses an ExchangePattern.InOut message exchange pattern. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeader(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Send the body to an endpoint returning any result output body. |
|
|
ProducerTemplate.requestBodyAndHeader(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue,
java.lang.Class<T> type)
Send the body to an endpoint returning any result output body. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeaders(Endpoint endpoint,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values. |
|
|
ProducerTemplate.requestBodyAndHeaders(Endpoint endpoint,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers,
java.lang.Class<T> type)
Sends the body to an endpoint with the specified headers and header values. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeaders(java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to the default endpoint and returns the result content Uses an ExchangePattern.InOut message exchange pattern. |
|
java.lang.Object |
ProducerTemplate.requestBodyAndHeaders(java.lang.String endpointUri,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values. |
|
|
ProducerTemplate.requestBodyAndHeaders(java.lang.String endpointUri,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers,
java.lang.Class<T> type)
Sends the body to an endpoint with the specified headers and header values. |
|
java.lang.Object |
ProducerTemplate.sendBody(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body)
Send the body to an endpoint with the given ExchangePattern
returning any result output body
Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBody(Endpoint endpoint,
java.lang.Object body)
Send the body to an endpoint Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBody(java.lang.Object body)
Sends the body to the default endpoint Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBody(java.lang.String endpointUri,
ExchangePattern pattern,
java.lang.Object body)
Send the body to an endpoint returning any result output body Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBody(java.lang.String endpointUri,
java.lang.Object body)
Send the body to an endpoint Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndHeader(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to an endpoint with a specified header and header value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeader(Endpoint endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to an endpoint with a specified header and header value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeader(java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to the default endpoint with a specified header and header value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndHeader(java.lang.String endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to an endpoint with a specified header and header value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeader(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
Sends the body to an endpoint with a specified header and header value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndHeaders(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeaders(Endpoint endpoint,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeaders(java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to the default endpoint with the specified headers and header values Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndHeaders(java.lang.String endpointUri,
ExchangePattern pattern,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndHeaders(java.lang.String endpointUri,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
Sends the body to an endpoint with the specified headers and header values Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndProperty(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
Sends the body to an endpoint with a specified property and property value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndProperty(Endpoint endpoint,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
Sends the body to an endpoint with a specified property and property value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndProperty(java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
Sends the body to the default endpoint with a specified property and property value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
java.lang.Object |
ProducerTemplate.sendBodyAndProperty(java.lang.String endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
Sends the body to an endpoint with a specified property and property value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
|
void |
ProducerTemplate.sendBodyAndProperty(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
Sends the body to an endpoint with a specified property and property value Notice: that if the processing of the exchange failed with an Exception it is thrown from this method as a CamelExecutionException with
the caused exception wrapped. |
Uses of CamelExecutionException in org.apache.camel.impl |
---|
Methods in org.apache.camel.impl that throw CamelExecutionException | |
---|---|
Exchange |
DefaultProducerTemplate.request(java.lang.String endpoint,
Processor processor)
|
java.lang.Object |
DefaultProducerTemplate.requestBody(Endpoint endpoint,
java.lang.Object body)
|
java.lang.Object |
DefaultProducerTemplate.requestBody(java.lang.Object body)
|
java.lang.Object |
DefaultProducerTemplate.requestBody(java.lang.String endpoint,
java.lang.Object body)
|
java.lang.Object |
DefaultProducerTemplate.requestBodyAndHeader(Endpoint endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
java.lang.Object |
DefaultProducerTemplate.requestBodyAndHeader(java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
java.lang.Object |
DefaultProducerTemplate.requestBodyAndHeader(java.lang.String endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
void |
DefaultProducerTemplate.sendBody(Endpoint endpoint,
java.lang.Object body)
|
java.lang.Object |
DefaultProducerTemplate.sendBody(java.lang.String endpointUri,
ExchangePattern pattern,
java.lang.Object body)
|
void |
DefaultProducerTemplate.sendBody(java.lang.String endpointUri,
java.lang.Object body)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndHeader(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
void |
DefaultProducerTemplate.sendBodyAndHeader(Endpoint endpoint,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndHeader(java.lang.String endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
void |
DefaultProducerTemplate.sendBodyAndHeader(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String header,
java.lang.Object headerValue)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndHeaders(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
|
void |
DefaultProducerTemplate.sendBodyAndHeaders(Endpoint endpoint,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndHeaders(java.lang.String endpointUri,
ExchangePattern pattern,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
|
void |
DefaultProducerTemplate.sendBodyAndHeaders(java.lang.String endpointUri,
java.lang.Object body,
java.util.Map<java.lang.String,java.lang.Object> headers)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndProperty(Endpoint endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
|
void |
DefaultProducerTemplate.sendBodyAndProperty(Endpoint endpoint,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
|
java.lang.Object |
DefaultProducerTemplate.sendBodyAndProperty(java.lang.String endpoint,
ExchangePattern pattern,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
|
void |
DefaultProducerTemplate.sendBodyAndProperty(java.lang.String endpointUri,
java.lang.Object body,
java.lang.String property,
java.lang.Object propertyValue)
|
Uses of CamelExecutionException in org.apache.camel.util |
---|
Methods in org.apache.camel.util that return CamelExecutionException | |
---|---|
static CamelExecutionException |
ObjectHelper.wrapCamelExecutionException(Exchange exchange,
java.lang.Throwable e)
Wraps the caused exception in a CamelExecutionException if its not
already such an exception. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |