Interface ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    All Known Subinterfaces:
    ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointBuilder
    Enclosing interface:
    ElsqlEndpointBuilderFactory

    public static interface ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Advanced builder for endpoint producers for the ElSQL component.
    • Method Detail

      • alwaysPopulateStatement

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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: <code>boolean</code> type. Default: false Group: advanced
        Parameters:
        alwaysPopulateStatement - the value to set
        Returns:
        the dsl builder
      • alwaysPopulateStatement

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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 a <code>boolean</code> type. Default: false Group: advanced
        Parameters:
        alwaysPopulateStatement - the value to set
        Returns:
        the dsl builder
      • elSqlConfig

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder elSqlConfig​(Object elSqlConfig)
        To use a specific configured ElSqlConfig. It may be better to use the databaseVendor option instead. The option is a: <code>com.opengamma.elsql.ElSqlConfig</code> type. Group: advanced
        Parameters:
        elSqlConfig - the value to set
        Returns:
        the dsl builder
      • elSqlConfig

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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 a <code>com.opengamma.elsql.ElSqlConfig</code> type. Group: advanced
        Parameters:
        elSqlConfig - the value to set
        Returns:
        the dsl builder
      • parametersCount

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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: <code>int</code> type. Group: advanced
        Parameters:
        parametersCount - the value to set
        Returns:
        the dsl builder
      • parametersCount

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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 a <code>int</code> type. Group: advanced
        Parameters:
        parametersCount - the value to set
        Returns:
        the dsl builder
      • placeholder

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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: <code>java.lang.String</code> type. Default: # Group: advanced
        Parameters:
        placeholder - the value to set
        Returns:
        the dsl builder
      • prepareStatementStrategy

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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: <code>org.apache.camel.component.sql.SqlPrepareStatementStrategy</code> type. Group: advanced
        Parameters:
        prepareStatementStrategy - the value to set
        Returns:
        the dsl builder
      • prepareStatementStrategy

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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 a <code>org.apache.camel.component.sql.SqlPrepareStatementStrategy</code> type. Group: advanced
        Parameters:
        prepareStatementStrategy - the value to set
        Returns:
        the dsl builder
      • templateOptions

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder templateOptions​(String key,
                                                                                                 Object value)
        Configures the Spring JdbcTemplate with the key/values from the Map. The option is a: <code>java.util.Map&lt;java.lang.String, java.lang.Object&gt;</code> 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
        Parameters:
        key - the option key
        value - the option value
        Returns:
        the dsl builder
      • templateOptions

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder templateOptions​(Map values)
        Configures the Spring JdbcTemplate with the key/values from the Map. The option is a: <code>java.util.Map&lt;java.lang.String, java.lang.Object&gt;</code> 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
        Parameters:
        values - the values
        Returns:
        the dsl builder
      • usePlaceholder

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder usePlaceholder​(boolean usePlaceholder)
        Sets whether to use placeholder and replace all placeholder characters with sign in the SQL queries. The option is a: <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        usePlaceholder - the value to set
        Returns:
        the dsl builder
      • usePlaceholder

        default ElsqlEndpointBuilderFactory.AdvancedElsqlEndpointProducerBuilder 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 a <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        usePlaceholder - the value to set
        Returns:
        the dsl builder