Interface BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
BoxEndpointBuilderFactory.AdvancedBoxEndpointBuilder
- Enclosing interface:
BoxEndpointBuilderFactory
public static interface BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint producers for the Box component.
-
Method Summary
Modifier and TypeMethodDescriptionaccessTokenCache
(com.box.sdk.IAccessTokenCache accessTokenCache) Custom Access Token Cache for storing and retrieving access tokens.accessTokenCache
(String accessTokenCache) Custom Access Token Cache for storing and retrieving access tokens.basic()
encryptionAlgorithm
(com.box.sdk.EncryptionAlgorithm encryptionAlgorithm) The type of encryption algorithm for JWT.encryptionAlgorithm
(String encryptionAlgorithm) The type of encryption algorithm for JWT.httpParams
(String httpParams) Custom HTTP params for settings like proxy host.httpParams
(Map<String, Object> httpParams) Custom HTTP params for settings like proxy host.lazyStartProducer
(boolean lazyStartProducer) Whether the producer should be started lazy (on the first message).lazyStartProducer
(String lazyStartProducer) Whether the producer should be started lazy (on the first message).maxCacheEntries
(int maxCacheEntries) The maximum number of access tokens in cache.maxCacheEntries
(String maxCacheEntries) The maximum number of access tokens in cache.Methods inherited from interface org.apache.camel.builder.EndpointProducerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, expr, getRawUri, getUri
Methods inherited from interface org.apache.camel.EndpointProducerResolver
resolve, resolve
-
Method Details
-
basic
-
lazyStartProducer
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder 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:boolean
type. Default: false Group: producer (advanced)- Parameters:
lazyStartProducer
- the value to set- Returns:
- the dsl builder
-
lazyStartProducer
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder lazyStartProducer(String 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 will be converted to aboolean
type. Default: false Group: producer (advanced)- Parameters:
lazyStartProducer
- the value to set- Returns:
- the dsl builder
-
httpParams
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder httpParams(Map<String, Object> httpParams) Custom HTTP params for settings like proxy host. The option is a:java.util.Map<java.lang.String, java.lang.Object>
type. Group: advanced- Parameters:
httpParams
- the value to set- Returns:
- the dsl builder
-
httpParams
Custom HTTP params for settings like proxy host. The option will be converted to ajava.util.Map<java.lang.String, java.lang.Object>
type. Group: advanced- Parameters:
httpParams
- the value to set- Returns:
- the dsl builder
-
accessTokenCache
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder accessTokenCache(com.box.sdk.IAccessTokenCache accessTokenCache) Custom Access Token Cache for storing and retrieving access tokens. The option is a:com.box.sdk.IAccessTokenCache
type. Group: security- Parameters:
accessTokenCache
- the value to set- Returns:
- the dsl builder
-
accessTokenCache
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder accessTokenCache(String accessTokenCache) Custom Access Token Cache for storing and retrieving access tokens. The option will be converted to acom.box.sdk.IAccessTokenCache
type. Group: security- Parameters:
accessTokenCache
- the value to set- Returns:
- the dsl builder
-
encryptionAlgorithm
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder encryptionAlgorithm(com.box.sdk.EncryptionAlgorithm encryptionAlgorithm) The type of encryption algorithm for JWT. Supported Algorithms: RSA_SHA_256 RSA_SHA_384 RSA_SHA_512. The option is a:com.box.sdk.EncryptionAlgorithm
type. Default: RSA_SHA_256 Group: security- Parameters:
encryptionAlgorithm
- the value to set- Returns:
- the dsl builder
-
encryptionAlgorithm
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder encryptionAlgorithm(String encryptionAlgorithm) The type of encryption algorithm for JWT. Supported Algorithms: RSA_SHA_256 RSA_SHA_384 RSA_SHA_512. The option will be converted to acom.box.sdk.EncryptionAlgorithm
type. Default: RSA_SHA_256 Group: security- Parameters:
encryptionAlgorithm
- the value to set- Returns:
- the dsl builder
-
maxCacheEntries
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder maxCacheEntries(int maxCacheEntries) The maximum number of access tokens in cache. The option is a:int
type. Default: 100 Group: security- Parameters:
maxCacheEntries
- the value to set- Returns:
- the dsl builder
-
maxCacheEntries
default BoxEndpointBuilderFactory.AdvancedBoxEndpointProducerBuilder maxCacheEntries(String maxCacheEntries) The maximum number of access tokens in cache. The option will be converted to aint
type. Default: 100 Group: security- Parameters:
maxCacheEntries
- the value to set- Returns:
- the dsl builder
-