public static interface CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder
extends org.apache.camel.builder.EndpointConsumerBuilder
| Modifier and Type | Method and Description |
|---|---|
default CordaEndpointBuilderFactory.AdvancedCordaEndpointConsumerBuilder |
advanced() |
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
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.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
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.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
pageSpecification(Object pageSpecification)
PageSpecification allows specification of a page number (starting
from 1) and page size (defaulting to 200 with a maximum page size of
(Integer.MAX_INT) Note: we default the page number to 200 to enable
queries without requiring a page specification but enabling detection
of large results sets that fall out of the 200 requirement.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
pageSpecification(String pageSpecification)
PageSpecification allows specification of a page number (starting
from 1) and page size (defaulting to 200 with a maximum page size of
(Integer.MAX_INT) Note: we default the page number to 200 to enable
queries without requiring a page specification but enabling detection
of large results sets that fall out of the 200 requirement.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
password(String password)
Password for login.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
processSnapshot(boolean processSnapshot)
Whether to process snapshots or not.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
processSnapshot(String processSnapshot)
Whether to process snapshots or not.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
sort(Object sort)
Sort allows specification of a set of entity attribute names and
their associated directionality and null handling, to be applied upon
processing a query specification.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
sort(String sort)
Sort allows specification of a set of entity attribute names and
their associated directionality and null handling, to be applied upon
processing a query specification.
|
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder |
username(String username)
Username for login.
|
default CordaEndpointBuilderFactory.AdvancedCordaEndpointConsumerBuilder advanced()
default CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder bridgeErrorHandler(String bridgeErrorHandler)
bridgeErrorHandler - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder pageSpecification(Object pageSpecification)
pageSpecification - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder pageSpecification(String pageSpecification)
pageSpecification - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder processSnapshot(boolean processSnapshot)
processSnapshot - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder processSnapshot(String processSnapshot)
processSnapshot - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder sort(Object sort)
sort - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder sort(String sort)
sort - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder password(String password)
password - the value to setdefault CordaEndpointBuilderFactory.CordaEndpointConsumerBuilder username(String username)
username - the value to setApache Camel