This is an automated email from the ASF dual-hosted git repository. jamesnetherton 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 56e9c81 CAMEL-12476: Make YQL header name constants public 56e9c81 is described below commit 56e9c811f11682aea1f1b37876515abe1366870a Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Mon May 14 08:47:50 2018 +0100 CAMEL-12476: Make YQL header name constants public --- .../src/main/java/org/apache/camel/component/yql/YqlProducer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-yql/src/main/java/org/apache/camel/component/yql/YqlProducer.java b/components/camel-yql/src/main/java/org/apache/camel/component/yql/YqlProducer.java index 62fe95e..3ca5bb0 100644 --- a/components/camel-yql/src/main/java/org/apache/camel/component/yql/YqlProducer.java +++ b/components/camel-yql/src/main/java/org/apache/camel/component/yql/YqlProducer.java @@ -29,8 +29,8 @@ import org.apache.http.HttpStatus; */ public class YqlProducer extends DefaultProducer { - static final String CAMEL_YQL_HTTP_STATUS = "CamelYqlHttpStatus"; - static final String CAMEL_YQL_HTTP_REQUEST = "CamelYqlHttpRequest"; + public static final String CAMEL_YQL_HTTP_STATUS = "CamelYqlHttpStatus"; + public static final String CAMEL_YQL_HTTP_REQUEST = "CamelYqlHttpRequest"; private final YqlEndpoint endpoint; private final YqlClient yqlClient; -- To stop receiving notification emails like this one, please contact jamesnether...@apache.org.