Interface ServiceComponentBuilderFactory.ServiceComponentBuilder
-
- All Superinterfaces:
ComponentBuilder<org.apache.camel.component.service.ServiceComponent>
- All Known Implementing Classes:
ServiceComponentBuilderFactory.ServiceComponentBuilderImpl
- Enclosing interface:
- ServiceComponentBuilderFactory
public static interface ServiceComponentBuilderFactory.ServiceComponentBuilder extends ComponentBuilder<org.apache.camel.component.service.ServiceComponent>
Builder for the Service component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ServiceComponentBuilderFactory.ServiceComponentBuilderbasicPropertyBinding(boolean basicPropertyBinding)Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities.default ServiceComponentBuilderFactory.ServiceComponentBuilderbridgeErrorHandler(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 ServiceComponentBuilderFactory.ServiceComponentBuilderservice(org.apache.camel.cloud.ServiceRegistry service)Inject the service to use.default ServiceComponentBuilderFactory.ServiceComponentBuilderserviceSelector(org.apache.camel.cloud.ServiceRegistry.Selector serviceSelector)Inject the service selector used to lookup the ServiceRegistry to use.-
Methods inherited from interface org.apache.camel.builder.component.ComponentBuilder
build, build, doSetProperty, register
-
-
-
-
Method Detail
-
bridgeErrorHandler
default ServiceComponentBuilderFactory.ServiceComponentBuilder 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
-
basicPropertyBinding
default ServiceComponentBuilderFactory.ServiceComponentBuilder 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
-
service
default ServiceComponentBuilderFactory.ServiceComponentBuilder service(org.apache.camel.cloud.ServiceRegistry service)
Inject the service to use. The option is a:org.apache.camel.cloud.ServiceRegistrytype. Group: advanced
-
serviceSelector
default ServiceComponentBuilderFactory.ServiceComponentBuilder serviceSelector(org.apache.camel.cloud.ServiceRegistry.Selector serviceSelector)
Inject the service selector used to lookup the ServiceRegistry to use. The option is a:org.apache.camel.cloud.ServiceRegistry.Selectortype. Group: advanced
-
-