This is an automated email from the ASF dual-hosted git repository.
lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push:
new c81bddb chore(doc): rephrase CamelServiceDestination javadocs.
c81bddb is described below
commit c81bddb00d228317fe7664b8a3f5ac390daa9500
Author: lburgazzoli <[email protected]>
AuthorDate: Sun Jun 14 14:38:18 2020 +0200
chore(doc): rephrase CamelServiceDestination javadocs.
---
.../quarkus/core/deployment/spi/CamelServicePatternBuildItem.java | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git
a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/spi/CamelServicePatternBuildItem.java
b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/spi/CamelServicePatternBuildItem.java
index e2accad..229cfcc 100644
---
a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/spi/CamelServicePatternBuildItem.java
+++
b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/spi/CamelServicePatternBuildItem.java
@@ -34,9 +34,13 @@ public final class CamelServicePatternBuildItem extends
MultiBuildItem {
* Where a Camel service should be further processed
*/
public enum CamelServiceDestination {
- /** Service marked with {@link #DISCOVERY} should be made discoverable
via FactoryFinder mechanism */
+ /**
+ * Marks Camel services to be discoverable via FactoryFinder mechanism.
+ */
DISCOVERY,
- /** Service marked with {@link #DISCOVERY} should be registered in the
Camel registry */
+ /**
+ * Marks Camel services to be bound to the {@link
org.apache.camel.spi.Registry}.
+ */
REGISTRY
}