You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/08/15 16:47:37 UTC

[camel] branch master updated: camel-cdi: Fix dead link in adoc (#4093)

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

acosentino 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 caa7d22  camel-cdi: Fix dead link in adoc (#4093)
caa7d22 is described below

commit caa7d22200194b71ddb64644cba9d7d795f88634
Author: Ahmed <42...@users.noreply.github.com>
AuthorDate: Sat Aug 15 18:47:17 2020 +0200

    camel-cdi: Fix dead link in adoc (#4093)
---
 components/camel-cdi/src/main/docs/cdi.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-cdi/src/main/docs/cdi.adoc b/components/camel-cdi/src/main/docs/cdi.adoc
index 6a36d63..dd6379c 100644
--- a/components/camel-cdi/src/main/docs/cdi.adoc
+++ b/components/camel-cdi/src/main/docs/cdi.adoc
@@ -452,11 +452,11 @@ PlatformTransactionManager createTransactionManager(TransactionManager transacti
 == Camel events to CDI events
 
 Camel provides a set
-of http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/management/event/package-summary.html[management
-events] that can be subscribed to for listening to Camel context,
+of https://www.javadoc.io/doc/org.apache.camel/camel-api/latest/org/apache/camel/spi/CamelEvent.html[events] 
+that can be subscribed to for listening to Camel context,
 service, route and exchange events. Camel CDI seamlessly translates
 these Camel events into CDI events that can be observed using
-CDI http://docs.jboss.org/cdi/spec/1.2/cdi-spec.html#observer_methods[observer
+CDI https://docs.jboss.org/cdi/spec/2.0/cdi-spec.html#observer_methods[observer
 methods], e.g.:
 
 [source,java]