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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0224ebba84b4f94f55c98b3b97d2cef27b14fd70
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Tue Jul 30 05:51:50 2019 +0200

    Polished
---
 .../src/main/java/org/apache/camel/spi/InterceptStrategy.java      | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git 
a/core/camel-api/src/main/java/org/apache/camel/spi/InterceptStrategy.java 
b/core/camel-api/src/main/java/org/apache/camel/spi/InterceptStrategy.java
index 581f9c9..b9ae8e7 100644
--- a/core/camel-api/src/main/java/org/apache/camel/spi/InterceptStrategy.java
+++ b/core/camel-api/src/main/java/org/apache/camel/spi/InterceptStrategy.java
@@ -27,7 +27,7 @@ import org.apache.camel.Processor;
  * <p/>
  * Its <b>strongly</b> adviced to use an {@link 
org.apache.camel.AsyncProcessor} as the returned wrapped
  * {@link Processor} which ensures the interceptor works well with the 
asynchronous routing engine.
- * You can use the {@link org.apache.camel.processor.DelegateAsyncProcessor} 
to easily return an
+ * You can use the {@link 
org.apache.camel.support.processor.DelegateAsyncProcessor} to easily return an
  * {@link org.apache.camel.AsyncProcessor} and override the
  * {@link org.apache.camel.AsyncProcessor#process(org.apache.camel.Exchange, 
org.apache.camel.AsyncCallback)} to
  * implement your interceptor logic. And just invoke the super method to 
<b>continue</b> routing.
@@ -35,10 +35,7 @@ import org.apache.camel.Processor;
 public interface InterceptStrategy {
 
     /**
-     * This method is invoked by
-     * {@link 
org.apache.camel.model.ProcessorDefinition#wrapProcessor(RouteContext, 
Processor)}
-     * to give the implementor an opportunity to wrap the target processor
-     * in a route.
+     * Give implementor an opportunity to wrap the target processor in a route.
      * <p/>
      * <b>Important:</b> See the class javadoc for advice on letting 
interceptor be compatible with the
      * asynchronous routing engine.

Reply via email to