This is an automated email from the ASF dual-hosted git repository. dmvolod pushed a commit to branch camel-2.21.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.21.x by this push: new 885872f CAMEL-13006: Fix for required properties in odata configuration 885872f is described below commit 885872f549b1eadf809aa91b1abc6afdec46e052 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 9ef9672..c8aa17e 100644 --- a/components/camel-olingo4/camel-olingo4-component/pom.xml +++ b/components/camel-olingo4/camel-olingo4-component/pom.xml @@ -137,7 +137,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> @@ -147,6 +146,8 @@ <nullableOptions> <nullableOption>queryParams</nullableOption> <nullableOption>endpointHttpHeaders</nullableOption> + <nullableOption>edm</nullableOption> + <nullableOption>responseHandler</nullableOption> </nullableOptions> </api> </apis>