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
commit 41ec1c341c7b300436ce708b38f5f0195e9533b3 Author: Dmitry Volodin <[email protected]> AuthorDate: Tue Jul 24 14:06:02 2018 +0300 Regen --- .../rabbitmq/springboot/RabbitMQComponentConfiguration.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java index e91f662..edacdd6 100644 --- a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java +++ b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentConfiguration.java @@ -37,7 +37,7 @@ public class RabbitMQComponentConfiguration ComponentConfigurationPropertiesCommon { /** - * The hostname of the running rabbitmq instance or cluster. + * The hostname of the running RabbitMQ instance or cluster. */ private String hostname; /** @@ -663,6 +663,14 @@ public class RabbitMQComponentConfiguration this.deadLetterExchangeType = deadLetterExchangeType; } + public Boolean getAllowNullHeaders() { + return allowNullHeaders; + } + + public void setAllowNullHeaders(Boolean allowNullHeaders) { + this.allowNullHeaders = allowNullHeaders; + } + public Boolean getResolvePropertyPlaceholders() { return resolvePropertyPlaceholders; }
