Author: dkulp
Date: Tue Jan 15 13:54:55 2008
New Revision: 612237
URL: http://svn.apache.org/viewvc?rev=612237&view=rev
Log:
Merged revisions 611891 via svnmerge from
https://svn.apache.org/repos/asf/incubator/cxf/trunk
........
r611891 | dkulp | 2008-01-14 14:08:14 -0500 (Mon, 14 Jan 2008) | 2 lines
fix javadoc and remove a println
........
Modified:
incubator/cxf/branches/2.0.x-fixes/ (props changed)
incubator/cxf/branches/2.0.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
incubator/cxf/branches/2.0.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java?rev=612237&r1=612236&r2=612237&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
(original)
+++
incubator/cxf/branches/2.0.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
Tue Jan 15 13:54:55 2008
@@ -27,8 +27,8 @@
/**
* A phase interceptor participates in a PhaseInterceptorChain.
* <pre>
- * The before and after properties contain a list of Ids that the
- * particular interceptor runs before or after.
+ * The before and after properties contain a list of Ids that can control
+ * where in the chain the interceptor is placed relative to other interceptors
* </pre>
* @see org.apache.cxf.phase.PhaseInterceptorChain
* @author Dan Diephouse
@@ -36,14 +36,16 @@
public interface PhaseInterceptor<T extends Message> extends Interceptor<T> {
/**
- * Returns a set of IDs specifying the interceptors that should be run
after this interceptor.
- * @return the ids of the interceptors to be run after
+ * Returns a set of IDs specifying the interceptors that this interceptor
should
+ * be placed after in the interceptor chain
+ * @return the ids of the interceptorsr
*/
Set<String> getAfter();
/**
- * Returns a set of IDs specifying the interceptors that should be run
before this interceptor.
- * @return the ids of the interceptors to be run before
+ * Returns a set of IDs specifying the interceptors that this interceptor
needs
+ * to be before in the inteceptor chain.
+ * @return the ids of the interceptors
*/
Set<String> getBefore();