public static interface JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default JettyHttpEndpointBuilderFactory.JettyHttpEndpointBuilder |
basic() |
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
basicPropertyBinding(String basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
eagerCheckContentAvailable(boolean eagerCheckContentAvailable)
Whether to eager check whether the HTTP requests has content if the
content-length header is 0 or not present.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
eagerCheckContentAvailable(String eagerCheckContentAvailable)
Whether to eager check whether the HTTP requests has content if the
content-length header is 0 or not present.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)
To let the consumer use a custom ExceptionHandler.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
exceptionHandler(String exceptionHandler)
To let the consumer use a custom ExceptionHandler.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
exchangePattern(org.apache.camel.ExchangePattern exchangePattern)
Sets the exchange pattern when the consumer creates an exchange.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
exchangePattern(String exchangePattern)
Sets the exchange pattern when the consumer creates an exchange.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
filterInitParameters(Map values)
Configuration of the filter init parameters.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
filterInitParameters(String key,
Object value)
Configuration of the filter init parameters.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
filters(List<Object> filters)
Allows using a custom filters which is putted into a list and can be
find in the Registry.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
filters(String filters)
Allows using a custom filters which is putted into a list and can be
find in the Registry.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
handlers(List<Object> handlers)
Specifies a comma-delimited set of Handler instances to lookup in
your Registry.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
handlers(String handlers)
Specifies a comma-delimited set of Handler instances to lookup in
your Registry.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
httpBinding(Object httpBinding)
To use a custom HttpBinding to control the mapping between Camel
message and HttpClient.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
httpBinding(String httpBinding)
To use a custom HttpBinding to control the mapping between Camel
message and HttpClient.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageBody(boolean mapHttpMessageBody)
If this option is true then IN exchange Body of the exchange will be
mapped to HTTP body.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageBody(String mapHttpMessageBody)
If this option is true then IN exchange Body of the exchange will be
mapped to HTTP body.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageFormUrlEncodedBody(boolean mapHttpMessageFormUrlEncodedBody)
If this option is true then IN exchange Form Encoded body of the
exchange will be mapped to HTTP.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageFormUrlEncodedBody(String mapHttpMessageFormUrlEncodedBody)
If this option is true then IN exchange Form Encoded body of the
exchange will be mapped to HTTP.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageHeaders(boolean mapHttpMessageHeaders)
If this option is true then IN exchange Headers of the exchange will
be mapped to HTTP headers.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
mapHttpMessageHeaders(String mapHttpMessageHeaders)
If this option is true then IN exchange Headers of the exchange will
be mapped to HTTP headers.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
multipartFilter(Object multipartFilter)
Allows using a custom multipart filter.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
multipartFilter(String multipartFilter)
Allows using a custom multipart filter.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
optionsEnabled(boolean optionsEnabled)
Specifies whether to enable HTTP OPTIONS for this Servlet consumer.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
optionsEnabled(String optionsEnabled)
Specifies whether to enable HTTP OPTIONS for this Servlet consumer.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
traceEnabled(boolean traceEnabled)
Specifies whether to enable HTTP TRACE for this Servlet consumer.
|
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder |
traceEnabled(String traceEnabled)
Specifies whether to enable HTTP TRACE for this Servlet consumer.
|
default JettyHttpEndpointBuilderFactory.JettyHttpEndpointBuilder basic()
default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder httpBinding(Object httpBinding)
org.apache.camel.http.common.HttpBinding type.
Group: common (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder httpBinding(String httpBinding)
org.apache.camel.http.common.HttpBinding type.
Group: common (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder eagerCheckContentAvailable(boolean eagerCheckContentAvailable)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder eagerCheckContentAvailable(String eagerCheckContentAvailable)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)
org.apache.camel.spi.ExceptionHandler
type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder exceptionHandler(String exceptionHandler)
org.apache.camel.spi.ExceptionHandler type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder exchangePattern(org.apache.camel.ExchangePattern exchangePattern)
org.apache.camel.ExchangePattern type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder exchangePattern(String exchangePattern)
org.apache.camel.ExchangePattern type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder filterInitParameters(String key, Object value)
java.util.Map<java.lang.String,
java.lang.String> type.
The option is multivalued, and you can use the
filterInitParameters(String, Object) method to add a value (call the
method multiple times to set more values).
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder filterInitParameters(Map values)
java.util.Map<java.lang.String,
java.lang.String> type.
The option is multivalued, and you can use the
filterInitParameters(String, Object) method to add a value (call the
method multiple times to set more values).
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder filters(List<Object> filters)
java.util.List<javax.servlet.Filter> type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder filters(String filters)
java.util.List<javax.servlet.Filter> type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder handlers(List<Object> handlers)
java.util.List<org.eclipse.jetty.server.Handler>
type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder handlers(String handlers)
java.util.List<org.eclipse.jetty.server.Handler>
type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder multipartFilter(Object multipartFilter)
javax.servlet.Filter type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder multipartFilter(String multipartFilter)
javax.servlet.Filter
type.
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder optionsEnabled(boolean optionsEnabled)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder optionsEnabled(String optionsEnabled)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder traceEnabled(boolean traceEnabled)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder traceEnabled(String traceEnabled)
boolean type.
Default: false
Group: consumer (advanced)default JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder basicPropertyBinding(String basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageBody(boolean mapHttpMessageBody)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageBody(String mapHttpMessageBody)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageFormUrlEncodedBody(boolean mapHttpMessageFormUrlEncodedBody)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageFormUrlEncodedBody(String mapHttpMessageFormUrlEncodedBody)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageHeaders(boolean mapHttpMessageHeaders)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder mapHttpMessageHeaders(String mapHttpMessageHeaders)
boolean type.
Default: true
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder synchronous(boolean synchronous)
boolean type.
Default: false
Group: advanceddefault JettyHttpEndpointBuilderFactory.AdvancedJettyHttpEndpointBuilder synchronous(String synchronous)
boolean type.
Default: false
Group: advancedApache Camel