GitHub user davidecavestro opened a pull request: https://github.com/apache/camel/pull/2189
Jdbc idempotent enhancements (clearString accessors + internally use getters) To use a custom table name you have to define custom queries, but the _clearString_ field is private and cannot be set. PR contents: - exposed accessor methods for _clearString_ field - access configurable queries through getters instead than accessing private fields (reducing the coupling to private fields, i.e. could be extracted an interface defining the getters) You can merge this pull request into a Git repository by running: $ git pull https://github.com/davidecavestro/camel jdbc_idempotent_enhancements Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/2189.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2189 ---- commit 980e910a6724735d48ff84b917c40d94c43a3719 Author: Davide Cavestro <davide.cavestro@...> Date: 2018-01-20T10:07:06Z Exposed accessors for property 'clearString' commit f49ba2a3029f36f0b212ba1a06a532968e80f9e8 Author: Davide Cavestro <davide.cavestro@...> Date: 2018-01-20T10:13:06Z Configurable sql props: decouple from private field through accessor usage ---- ---