This is an automated email from the ASF dual-hosted git repository. oalsafi 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 f068b0a Fix broken links to Javadoc new cffadbc Merge pull request #3538 from PickledDragon/patch-3 f068b0a is described below commit f068b0a9082f8ffa4311748c100f40f35de06797 Author: Praveen Kottarathil <praveenkottarat...@gmail.com> AuthorDate: Mon Feb 3 14:03:37 2020 +0100 Fix broken links to Javadoc Old Javadoc location at `http://camel.apache.org/maven/*` appears to be broken. Can we point to `javadoc.io` instead? --- docs/user-manual/modules/ROOT/pages/configuring-camel.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/configuring-camel.adoc b/docs/user-manual/modules/ROOT/pages/configuring-camel.adoc index 81abe39..ec8702b 100644 --- a/docs/user-manual/modules/ROOT/pages/configuring-camel.adoc +++ b/docs/user-manual/modules/ROOT/pages/configuring-camel.adoc @@ -7,9 +7,9 @@ You might first want to read xref:writing-components.adoc[Writing Components] for a background in how to implement a new component. Typically it means you write an implementation of the -http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Component.html[Component] +https://www.javadoc.io/doc/org.apache.camel/camel-api/current/org/apache/camel/Component.html[Component] interface, usually deriving from -http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/DefaultComponent.html[DefaultComponent]. +https://www.javadoc.io/doc/org.apache.camel/camel-support/current/org/apache/camel/support/DefaultComponent.html[DefaultComponent]. You can then register your component explicitly via: @@ -40,7 +40,7 @@ Then if you refer to an endpoint as `foo://somethingOrOther` Camel will auto-discover your component and register it. The `FooComponent` can then be auto-injected with resources using the -http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/spi/Injector.html[Injector], +https://www.javadoc.io/doc/org.apache.camel/camel-api/current/org/apache/camel/spi/Injector.html[Injector], such as to support xref:components::spring.adoc[Spring] based auto-wiring, or to support `@Resource` (EJB3 style) injection or Guice style `@Inject` injection.