This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 55536471e349a9bb10a2e25c2745cdf550e88640 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Mar 12 12:37:41 2021 +0100 CAMEL-16337: Add short uuid generator that uses 50% the size as the default. --- .../org/apache/camel/spring/boot/CamelConfigurationProperties.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java index 8366f18..9486155 100644 --- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java +++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelConfigurationProperties.java @@ -102,6 +102,13 @@ public class CamelConfigurationProperties extends DefaultConfigurationProperties private boolean shutdownLogInflightExchangesOnTimeout = true; /** + * UUID generator to use. + * + * default (32 bytes), short (16 bytes), classic (32 bytes or longer), simple (long incrementing counter) + */ + private String uuidGenerator = "default"; + + /** * Enable JMX in your Camel application. */ private boolean jmxEnabled = true;