Interface ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder
- All Superinterfaces:
org.apache.camel.builder.EndpointConsumerBuilder,org.apache.camel.EndpointConsumerResolver
- Enclosing interface:
- ServletEndpointBuilderFactory
public static interface ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
Advanced builder for endpoint for the Servlet component.
-
Method Summary
Modifier and TypeMethodDescriptionattachmentMultipartBinding(boolean attachmentMultipartBinding) Whether to automatic bind multipart/form-data as attachments on the Camel Exchange.attachmentMultipartBinding(String attachmentMultipartBinding) Whether to automatic bind multipart/form-data as attachments on the Camel Exchange.basic()bridgeErrorHandler(boolean bridgeErrorHandler) Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.bridgeErrorHandler(String bridgeErrorHandler) Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.eagerCheckContentAvailable(boolean eagerCheckContentAvailable) Whether to eager check whether the HTTP requests has content if the content-length header is 0 or not present.eagerCheckContentAvailable(String eagerCheckContentAvailable) Whether to eager check whether the HTTP requests has content if the content-length header is 0 or not present.exceptionHandler(String exceptionHandler) To let the consumer use a custom ExceptionHandler.exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler) To let the consumer use a custom ExceptionHandler.exchangePattern(String exchangePattern) Sets the exchange pattern when the consumer creates an exchange.exchangePattern(org.apache.camel.ExchangePattern exchangePattern) Sets the exchange pattern when the consumer creates an exchange.fileNameExtWhitelist(String fileNameExtWhitelist) Whitelist of accepted filename extensions for accepting uploaded files.headerFilterStrategy(String headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message.headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message.httpBinding(String httpBinding) To use a custom HttpBinding to control the mapping between Camel message and HttpClient.httpBinding(org.apache.camel.http.common.HttpBinding httpBinding) To use a custom HttpBinding to control the mapping between Camel message and HttpClient.mapHttpMessageBody(boolean mapHttpMessageBody) If this option is true then IN exchange Body of the exchange will be mapped to HTTP body.mapHttpMessageBody(String mapHttpMessageBody) If this option is true then IN exchange Body of the exchange will be mapped to HTTP body.mapHttpMessageFormUrlEncodedBody(boolean mapHttpMessageFormUrlEncodedBody) If this option is true then IN exchange Form Encoded body of the exchange will be mapped to HTTP.mapHttpMessageFormUrlEncodedBody(String mapHttpMessageFormUrlEncodedBody) If this option is true then IN exchange Form Encoded body of the exchange will be mapped to HTTP.mapHttpMessageHeaders(boolean mapHttpMessageHeaders) If this option is true then IN exchange Headers of the exchange will be mapped to HTTP headers.mapHttpMessageHeaders(String mapHttpMessageHeaders) If this option is true then IN exchange Headers of the exchange will be mapped to HTTP headers.optionsEnabled(boolean optionsEnabled) Specifies whether to enable HTTP OPTIONS for this Servlet consumer.optionsEnabled(String optionsEnabled) Specifies whether to enable HTTP OPTIONS for this Servlet consumer.traceEnabled(boolean traceEnabled) Specifies whether to enable HTTP TRACE for this Servlet consumer.traceEnabled(String traceEnabled) Specifies whether to enable HTTP TRACE for this Servlet consumer.Methods inherited from interface org.apache.camel.builder.EndpointConsumerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, expr, getRawUri, getUriMethods inherited from interface org.apache.camel.EndpointConsumerResolver
resolve, resolve
-
Method Details
-
basic
-
headerFilterStrategy
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message. The option is a: <code>org.apache.camel.spi.HeaderFilterStrategy</code> type. Group: common (advanced)- Parameters:
headerFilterStrategy- the value to set- Returns:
- the dsl builder
-
headerFilterStrategy
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder headerFilterStrategy(String headerFilterStrategy) To use a custom HeaderFilterStrategy to filter header to and from Camel message. The option will be converted to a <code>org.apache.camel.spi.HeaderFilterStrategy</code> type. Group: common (advanced)- Parameters:
headerFilterStrategy- the value to set- Returns:
- the dsl builder
-
httpBinding
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder httpBinding(org.apache.camel.http.common.HttpBinding httpBinding) To use a custom HttpBinding to control the mapping between Camel message and HttpClient. The option is a: <code>org.apache.camel.http.common.HttpBinding</code> type. Group: common (advanced)- Parameters:
httpBinding- the value to set- Returns:
- the dsl builder
-
httpBinding
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder httpBinding(String httpBinding) To use a custom HttpBinding to control the mapping between Camel message and HttpClient. The option will be converted to a <code>org.apache.camel.http.common.HttpBinding</code> type. Group: common (advanced)- Parameters:
httpBinding- the value to set- Returns:
- the dsl builder
-
attachmentMultipartBinding
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder attachmentMultipartBinding(boolean attachmentMultipartBinding) Whether to automatic bind multipart/form-data as attachments on the Camel Exchange. The options attachmentMultipartBinding=true and disableStreamCache=false cannot work together. Remove disableStreamCache to use AttachmentMultipartBinding. This is turn off by default as this may require servlet specific configuration to enable this when using Servlet's. The option is a: <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
attachmentMultipartBinding- the value to set- Returns:
- the dsl builder
-
attachmentMultipartBinding
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder attachmentMultipartBinding(String attachmentMultipartBinding) Whether to automatic bind multipart/form-data as attachments on the Camel Exchange. The options attachmentMultipartBinding=true and disableStreamCache=false cannot work together. Remove disableStreamCache to use AttachmentMultipartBinding. This is turn off by default as this may require servlet specific configuration to enable this when using Servlet's. The option will be converted to a <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
attachmentMultipartBinding- the value to set- Returns:
- the dsl builder
-
bridgeErrorHandler
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder bridgeErrorHandler(boolean bridgeErrorHandler) Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
bridgeErrorHandler- the value to set- Returns:
- the dsl builder
-
bridgeErrorHandler
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder bridgeErrorHandler(String bridgeErrorHandler) Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
bridgeErrorHandler- the value to set- Returns:
- the dsl builder
-
eagerCheckContentAvailable
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder eagerCheckContentAvailable(boolean eagerCheckContentAvailable) Whether to eager check whether the HTTP requests has content if the content-length header is 0 or not present. This can be turned on in case HTTP clients do not send streamed data. The option is a: <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
eagerCheckContentAvailable- the value to set- Returns:
- the dsl builder
-
eagerCheckContentAvailable
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder eagerCheckContentAvailable(String eagerCheckContentAvailable) Whether to eager check whether the HTTP requests has content if the content-length header is 0 or not present. This can be turned on in case HTTP clients do not send streamed data. The option will be converted to a <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
eagerCheckContentAvailable- the value to set- Returns:
- the dsl builder
-
exceptionHandler
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler) To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exceptionHandler
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder exceptionHandler(String exceptionHandler) To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exchangePattern
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder exchangePattern(org.apache.camel.ExchangePattern exchangePattern) Sets the exchange pattern when the consumer creates an exchange. The option is a: <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
exchangePattern
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder exchangePattern(String exchangePattern) Sets the exchange pattern when the consumer creates an exchange. The option will be converted to a <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
fileNameExtWhitelist
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder fileNameExtWhitelist(String fileNameExtWhitelist) Whitelist of accepted filename extensions for accepting uploaded files. Multiple extensions can be separated by comma, such as txt,xml. The option is a: <code>java.lang.String</code> type. Group: consumer (advanced)- Parameters:
fileNameExtWhitelist- the value to set- Returns:
- the dsl builder
-
mapHttpMessageBody
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageBody(boolean mapHttpMessageBody) If this option is true then IN exchange Body of the exchange will be mapped to HTTP body. Setting this to false will avoid the HTTP mapping. The option is a: <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageBody- the value to set- Returns:
- the dsl builder
-
mapHttpMessageBody
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageBody(String mapHttpMessageBody) If this option is true then IN exchange Body of the exchange will be mapped to HTTP body. Setting this to false will avoid the HTTP mapping. The option will be converted to a <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageBody- the value to set- Returns:
- the dsl builder
-
mapHttpMessageFormUrlEncodedBody
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageFormUrlEncodedBody(boolean mapHttpMessageFormUrlEncodedBody) If this option is true then IN exchange Form Encoded body of the exchange will be mapped to HTTP. Setting this to false will avoid the HTTP Form Encoded body mapping. The option is a: <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageFormUrlEncodedBody- the value to set- Returns:
- the dsl builder
-
mapHttpMessageFormUrlEncodedBody
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageFormUrlEncodedBody(String mapHttpMessageFormUrlEncodedBody) If this option is true then IN exchange Form Encoded body of the exchange will be mapped to HTTP. Setting this to false will avoid the HTTP Form Encoded body mapping. The option will be converted to a <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageFormUrlEncodedBody- the value to set- Returns:
- the dsl builder
-
mapHttpMessageHeaders
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageHeaders(boolean mapHttpMessageHeaders) If this option is true then IN exchange Headers of the exchange will be mapped to HTTP headers. Setting this to false will avoid the HTTP Headers mapping. The option is a: <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageHeaders- the value to set- Returns:
- the dsl builder
-
mapHttpMessageHeaders
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder mapHttpMessageHeaders(String mapHttpMessageHeaders) If this option is true then IN exchange Headers of the exchange will be mapped to HTTP headers. Setting this to false will avoid the HTTP Headers mapping. The option will be converted to a <code>boolean</code> type. Default: true Group: consumer (advanced)- Parameters:
mapHttpMessageHeaders- the value to set- Returns:
- the dsl builder
-
optionsEnabled
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder optionsEnabled(boolean optionsEnabled) Specifies whether to enable HTTP OPTIONS for this Servlet consumer. By default OPTIONS is turned off. The option is a: <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
optionsEnabled- the value to set- Returns:
- the dsl builder
-
optionsEnabled
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder optionsEnabled(String optionsEnabled) Specifies whether to enable HTTP OPTIONS for this Servlet consumer. By default OPTIONS is turned off. The option will be converted to a <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
optionsEnabled- the value to set- Returns:
- the dsl builder
-
traceEnabled
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder traceEnabled(boolean traceEnabled) Specifies whether to enable HTTP TRACE for this Servlet consumer. By default TRACE is turned off. The option is a: <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
traceEnabled- the value to set- Returns:
- the dsl builder
-
traceEnabled
default ServletEndpointBuilderFactory.AdvancedServletEndpointBuilder traceEnabled(String traceEnabled) Specifies whether to enable HTTP TRACE for this Servlet consumer. By default TRACE is turned off. The option will be converted to a <code>boolean</code> type. Default: false Group: consumer (advanced)- Parameters:
traceEnabled- the value to set- Returns:
- the dsl builder
-