You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2020/09/09 14:06:53 UTC

[camel] branch uuid-generator updated: correct typo

This is an automated email from the ASF dual-hosted git repository.

bvahdat pushed a commit to branch uuid-generator
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/uuid-generator by this push:
     new 6cbe0ee  correct typo
6cbe0ee is described below

commit 6cbe0ee48088c6b5691f7b48f916b4f0fe88cc60
Author: Babak Vahdat <bv...@apache.org>
AuthorDate: Wed Sep 9 16:06:41 2020 +0200

    correct typo
---
 docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
index 58a59ed..7b13b09 100644
--- a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
+++ b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
@@ -52,9 +52,9 @@ Camel comes with three implementations of
 * `org.apache.camel.support.SimpleUuidGenerator` - This implementation uses
 internally a `java.util.concurrent.atomic.AtomicLong` and increases the
 ID for every call by one. Starting with 1 as the first id.
+* `org.apache.camel.support.VanillaUuidGenerator` - This implementation
+uses a counter which increments by one. This generator is not unique per host
+or JVM, as its private per CamelContext.
 * `org.apache.camel.impl.engine.DefaultUuidGenerator` - This implementation
 uses a fast unique UUID generation that is cluster safe (similar to uuid
 generator in ActiveMQ). This is the default implementation in use by Camel.
-* `org.apache.camel.support.SimpleUuidGenerator` - This implementation
-uses a counter which increments by one. This generator is not unique per host
-or JVM, as its private per CamelContext.