Interface ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
-
- All Superinterfaces:
ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
,ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
,org.apache.camel.builder.EndpointConsumerBuilder
,org.apache.camel.EndpointConsumerResolver
,org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- ElsqlEndpointBuilderFactory
public static interface ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder extends ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder, ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
Advanced builder for endpoint for the ElSQL component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
alwaysPopulateStatement(boolean alwaysPopulateStatement)
If enabled then the populateStatement method from org.apache.camel.component.sql.SqlPrepareStatementStrategy is always invoked, also if there is no expected parameters to be prepared.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
alwaysPopulateStatement(String alwaysPopulateStatement)
If enabled then the populateStatement method from org.apache.camel.component.sql.SqlPrepareStatementStrategy is always invoked, also if there is no expected parameters to be prepared.default ElsqlEndpointBuilderFactory.ElsqlEndpointBuilder
basic()
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
elSqlConfig(Object elSqlConfig)
To use a specific configured ElSqlConfig.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
elSqlConfig(String elSqlConfig)
To use a specific configured ElSqlConfig.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
parametersCount(int parametersCount)
If set greater than zero, then Camel will use this count value of parameters to replace instead of querying via JDBC metadata API.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
parametersCount(String parametersCount)
If set greater than zero, then Camel will use this count value of parameters to replace instead of querying via JDBC metadata API.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
placeholder(String placeholder)
Specifies a character that will be replaced to in SQL query.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
prepareStatementStrategy(Object prepareStatementStrategy)
Allows to plugin to use a custom org.apache.camel.component.sql.SqlPrepareStatementStrategy to control preparation of the query and prepared statement.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
prepareStatementStrategy(String prepareStatementStrategy)
Allows to plugin to use a custom org.apache.camel.component.sql.SqlPrepareStatementStrategy to control preparation of the query and prepared statement.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
templateOptions(String key, Object value)
Configures the Spring JdbcTemplate with the key/values from the Map.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
templateOptions(Map values)
Configures the Spring JdbcTemplate with the key/values from the Map.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
usePlaceholder(boolean usePlaceholder)
Sets whether to use placeholder and replace all placeholder characters with sign in the SQL queries.default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
usePlaceholder(String usePlaceholder)
Sets whether to use placeholder and replace all placeholder characters with sign in the SQL queries.-
Methods inherited from interface org.apache.camel.builder.endpoint.dsl.ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
exceptionHandler, exceptionHandler, exchangePattern, exchangePattern, pollStrategy, pollStrategy, processingStrategy, processingStrategy
-
Methods inherited from interface org.apache.camel.builder.EndpointConsumerBuilder
doSetMultiValueProperties, doSetMultiValueProperty, doSetProperty, getUri
-
-
-
-
Method Detail
-
basic
default ElsqlEndpointBuilderFactory.ElsqlEndpointBuilder basic()
- Specified by:
basic
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
basic
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
alwaysPopulateStatement
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder alwaysPopulateStatement(boolean alwaysPopulateStatement)
If enabled then the populateStatement method from org.apache.camel.component.sql.SqlPrepareStatementStrategy is always invoked, also if there is no expected parameters to be prepared. When this is false then the populateStatement is only invoked if there is 1 or more expected parameters to be set; for example this avoids reading the message body/headers for SQL queries with no parameters. The option is a:boolean
type. Default: false Group: advanced- Specified by:
alwaysPopulateStatement
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
alwaysPopulateStatement
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
alwaysPopulateStatement
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder alwaysPopulateStatement(String alwaysPopulateStatement)
If enabled then the populateStatement method from org.apache.camel.component.sql.SqlPrepareStatementStrategy is always invoked, also if there is no expected parameters to be prepared. When this is false then the populateStatement is only invoked if there is 1 or more expected parameters to be set; for example this avoids reading the message body/headers for SQL queries with no parameters. The option will be converted to aboolean
type. Default: false Group: advanced- Specified by:
alwaysPopulateStatement
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
alwaysPopulateStatement
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
elSqlConfig
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder elSqlConfig(Object elSqlConfig)
To use a specific configured ElSqlConfig. It may be better to use the databaseVendor option instead. The option is a:com.opengamma.elsql.ElSqlConfig
type. Group: advanced- Specified by:
elSqlConfig
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
elSqlConfig
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
elSqlConfig
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder elSqlConfig(String elSqlConfig)
To use a specific configured ElSqlConfig. It may be better to use the databaseVendor option instead. The option will be converted to acom.opengamma.elsql.ElSqlConfig
type. Group: advanced- Specified by:
elSqlConfig
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
elSqlConfig
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
parametersCount
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder parametersCount(int parametersCount)
If set greater than zero, then Camel will use this count value of parameters to replace instead of querying via JDBC metadata API. This is useful if the JDBC vendor could not return correct parameters count, then user may override instead. The option is a:int
type. Group: advanced- Specified by:
parametersCount
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
parametersCount
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
parametersCount
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder parametersCount(String parametersCount)
If set greater than zero, then Camel will use this count value of parameters to replace instead of querying via JDBC metadata API. This is useful if the JDBC vendor could not return correct parameters count, then user may override instead. The option will be converted to aint
type. Group: advanced- Specified by:
parametersCount
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
parametersCount
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
placeholder
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder placeholder(String placeholder)
Specifies a character that will be replaced to in SQL query. Notice, that it is simple String.replaceAll() operation and no SQL parsing is involved (quoted strings will also change). The option is a:java.lang.String
type. Default: # Group: advanced- Specified by:
placeholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
placeholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
prepareStatementStrategy
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder prepareStatementStrategy(Object prepareStatementStrategy)
Allows to plugin to use a custom org.apache.camel.component.sql.SqlPrepareStatementStrategy to control preparation of the query and prepared statement. The option is a:org.apache.camel.component.sql.SqlPrepareStatementStrategy
type. Group: advanced- Specified by:
prepareStatementStrategy
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
prepareStatementStrategy
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
prepareStatementStrategy
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder prepareStatementStrategy(String prepareStatementStrategy)
Allows to plugin to use a custom org.apache.camel.component.sql.SqlPrepareStatementStrategy to control preparation of the query and prepared statement. The option will be converted to aorg.apache.camel.component.sql.SqlPrepareStatementStrategy
type. Group: advanced- Specified by:
prepareStatementStrategy
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
prepareStatementStrategy
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
synchronous
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced- Specified by:
synchronous
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
synchronous
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
synchronous
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced- Specified by:
synchronous
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
synchronous
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
templateOptions
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder templateOptions(String key, Object value)
Configures the Spring JdbcTemplate with the key/values from the Map. The option is a:java.util.Map<java.lang.String, java.lang.Object>
type. The option is multivalued, and you can use the templateOptions(String, Object) method to add a value (call the method multiple times to set more values). Group: advanced- Specified by:
templateOptions
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
templateOptions
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
templateOptions
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder templateOptions(Map values)
Configures the Spring JdbcTemplate with the key/values from the Map. The option is a:java.util.Map<java.lang.String, java.lang.Object>
type. The option is multivalued, and you can use the templateOptions(String, Object) method to add a value (call the method multiple times to set more values). Group: advanced- Specified by:
templateOptions
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
templateOptions
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
usePlaceholder
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder usePlaceholder(boolean usePlaceholder)
Sets whether to use placeholder and replace all placeholder characters with sign in the SQL queries. The option is a:boolean
type. Default: true Group: advanced- Specified by:
usePlaceholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
usePlaceholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
usePlaceholder
default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder usePlaceholder(String usePlaceholder)
Sets whether to use placeholder and replace all placeholder characters with sign in the SQL queries. The option will be converted to aboolean
type. Default: true Group: advanced- Specified by:
usePlaceholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointConsumerBuilder
- Specified by:
usePlaceholder
in interfaceElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
-
-