Interface StompComponentBuilderFactory.StompComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.stomp.StompComponent>
- All Known Implementing Classes:
StompComponentBuilderFactory.StompComponentBuilderImpl
- Enclosing interface:
- StompComponentBuilderFactory
public static interface StompComponentBuilderFactory.StompComponentBuilder extends ComponentBuilder<org.apache.camel.component.stomp.StompComponent>
Builder for the Stomp component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default StompComponentBuilderFactory.StompComponentBuilderbasicPropertyBinding(boolean basicPropertyBinding)Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities.default StompComponentBuilderFactory.StompComponentBuilderbridgeErrorHandler(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.default StompComponentBuilderFactory.StompComponentBuilderbrokerURL(String brokerURL)The URI of the Stomp broker to connect to.default StompComponentBuilderFactory.StompComponentBuilderconfiguration(org.apache.camel.component.stomp.StompConfiguration configuration)Component configuration.default StompComponentBuilderFactory.StompComponentBuildercustomHeaders(Properties customHeaders)To set custom headers.default StompComponentBuilderFactory.StompComponentBuilderheaderFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message.default StompComponentBuilderFactory.StompComponentBuilderhost(String host)The virtual host name.default StompComponentBuilderFactory.StompComponentBuilderlazyStartProducer(boolean lazyStartProducer)Whether the producer should be started lazy (on the first message).default StompComponentBuilderFactory.StompComponentBuilderlogin(String login)The username.default StompComponentBuilderFactory.StompComponentBuilderpasscode(String passcode)The password.default StompComponentBuilderFactory.StompComponentBuildersslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)To configure security using SSLContextParameters.default StompComponentBuilderFactory.StompComponentBuilderuseGlobalSslContextParameters(boolean useGlobalSslContextParameters)Enable usage of global SSL context parameters.default StompComponentBuilderFactory.StompComponentBuilderversion(String version)The stomp version (1.1, or 1.2).-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
brokerURL
default StompComponentBuilderFactory.StompComponentBuilder brokerURL(String brokerURL)
The URI of the Stomp broker to connect to. The option is a:java.lang.Stringtype. Default: tcp://localhost:61613 Group: common
-
customHeaders
default StompComponentBuilderFactory.StompComponentBuilder customHeaders(Properties customHeaders)
To set custom headers. The option is a:java.util.Propertiestype. Group: common
-
host
default StompComponentBuilderFactory.StompComponentBuilder host(String host)
The virtual host name. The option is a:java.lang.Stringtype. Group: common
-
version
default StompComponentBuilderFactory.StompComponentBuilder version(String version)
The stomp version (1.1, or 1.2). The option is a:java.lang.Stringtype. Group: common
-
bridgeErrorHandler
default StompComponentBuilderFactory.StompComponentBuilder 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:booleantype. Default: false Group: consumer
-
lazyStartProducer
default StompComponentBuilderFactory.StompComponentBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:booleantype. Default: false Group: producer
-
basicPropertyBinding
default StompComponentBuilderFactory.StompComponentBuilder basicPropertyBinding(boolean basicPropertyBinding)
Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. The option is a:booleantype. Default: false Group: advanced
-
configuration
default StompComponentBuilderFactory.StompComponentBuilder configuration(org.apache.camel.component.stomp.StompConfiguration configuration)
Component configuration. The option is a:org.apache.camel.component.stomp.StompConfigurationtype. Group: advanced
-
headerFilterStrategy
default StompComponentBuilderFactory.StompComponentBuilder headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message. The option is a:org.apache.camel.spi.HeaderFilterStrategytype. Group: filter
-
login
default StompComponentBuilderFactory.StompComponentBuilder login(String login)
The username. The option is a:java.lang.Stringtype. Group: security
-
passcode
default StompComponentBuilderFactory.StompComponentBuilder passcode(String passcode)
The password. The option is a:java.lang.Stringtype. Group: security
-
sslContextParameters
default StompComponentBuilderFactory.StompComponentBuilder sslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
To configure security using SSLContextParameters. The option is a:org.apache.camel.support.jsse.SSLContextParameterstype. Group: security
-
useGlobalSslContextParameters
default StompComponentBuilderFactory.StompComponentBuilder useGlobalSslContextParameters(boolean useGlobalSslContextParameters)
Enable usage of global SSL context parameters. The option is a:booleantype. Default: false Group: security
-
-