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 0e654ad CAMEL-14088 - Fixed links on registry page 0e654ad is described below commit 0e654ad9dd202396909f2c206ab4a43e5cd1d68b Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Oct 21 10:52:19 2019 +0200 CAMEL-14088 - Fixed links on registry page --- docs/user-manual/modules/ROOT/pages/registry.adoc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/registry.adoc b/docs/user-manual/modules/ROOT/pages/registry.adoc index ddc076e..1eace73 100644 --- a/docs/user-manual/modules/ROOT/pages/registry.adoc +++ b/docs/user-manual/modules/ROOT/pages/registry.adoc @@ -2,18 +2,16 @@ = Registry Camel supports a pluggable -http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/spi/Registry.html[Registry] +https://github.com/apache/camel/blob/master/core/camel-api/src/main/java/org/apache/camel/spi/Registry.java[Registry] plugin strategy. This allows Camel to easily work with some kind of registry like -* http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/SimpleRegistry.html[SimpleRegistry] +* https://github.com/apache/camel/blob/master/core/camel-support/src/main/java/org/apache/camel/support/SimpleRegistry.java[SimpleRegistry] which is a simple `java.util.Map` based registry. -* http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/JndiRegistry.html[JndiRegistry] +* https://github.com/apache/camel/blob/master/core/camel-core-engine/src/main/java/org/apache/camel/impl/JndiRegistry.java[JndiRegistry] which uses the JNDI InitialContext as the registry -* http://camel.apache.org/maven/current/camel-spring/apidocs/org/apache/camel/spring/spi/ApplicationContextRegistry.html[ApplicationContextRegistry] -if you are using Spring, it uses the ApplicationContext as the registry You can also access the Registry from the CamelContext via the -http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/CamelContext.html#getRegistry()[camelContext.getRegistry() +https://github.com/apache/camel/blob/master/core/camel-api/src/main/java/org/apache/camel/CamelContext.java#L690[camelContext.getRegistry() method]