This is an automated email from the ASF dual-hosted git repository. dmvolod pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 23b7071 CAMEL-13006: Fix for required properties in odata configuration 23b7071 is described below commit 23b707132d6d4ea4b88695dbc98226150a788910 Author: phantomjinx <p.g.richard...@phantomjinx.co.uk> AuthorDate: Thu Dec 20 11:26:36 2018 +0000 CAMEL-13006: Fix for required properties in odata configuration * edm and responseHandler are set at runtime by the Oling4AppImpl, yet they are checked by the endpoint using the getters/setters in the Oling4Configuration. Therefore, they must be included in the latter to allow for a route to pass muster. --- components/camel-olingo4/camel-olingo4-component/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-olingo4/camel-olingo4-component/pom.xml b/components/camel-olingo4/camel-olingo4-component/pom.xml index af97408..705eddb 100644 --- a/components/camel-olingo4/camel-olingo4-component/pom.xml +++ b/components/camel-olingo4/camel-olingo4-component/pom.xml @@ -139,7 +139,6 @@ <apiName/> <proxyClass>org.apache.camel.component.olingo4.api.Olingo4App</proxyClass> <fromSignatureFile>src/signatures/olingo-api-signature.txt</fromSignatureFile> - <excludeConfigNames>edm|responseHandler</excludeConfigNames> <extraOptions> <extraOption> <name>keyPredicate</name> @@ -149,6 +148,8 @@ <nullableOptions> <nullableOption>queryParams</nullableOption> <nullableOption>endpointHttpHeaders</nullableOption> + <nullableOption>edm</nullableOption> + <nullableOption>responseHandler</nullableOption> </nullableOptions> </api> </apis>