You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/01/14 20:08:16 UTC

svn commit: r611891 - in /incubator/cxf/trunk/api/src/main/java/org/apache/cxf: phase/PhaseInterceptor.java wsdl/EndpointReferenceUtils.java

Author: dkulp
Date: Mon Jan 14 11:08:14 2008
New Revision: 611891

URL: http://svn.apache.org/viewvc?rev=611891&view=rev
Log:
fix javadoc and remove a println

Modified:
    incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
    incubator/cxf/trunk/api/src/main/java/org/apache/cxf/wsdl/EndpointReferenceUtils.java

Modified: incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java?rev=611891&r1=611890&r2=611891&view=diff
==============================================================================
--- incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java (original)
+++ incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptor.java Mon Jan 14 11:08:14 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();
 

Modified: incubator/cxf/trunk/api/src/main/java/org/apache/cxf/wsdl/EndpointReferenceUtils.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/java/org/apache/cxf/wsdl/EndpointReferenceUtils.java?rev=611891&r1=611890&r2=611891&view=diff
==============================================================================
--- incubator/cxf/trunk/api/src/main/java/org/apache/cxf/wsdl/EndpointReferenceUtils.java (original)
+++ incubator/cxf/trunk/api/src/main/java/org/apache/cxf/wsdl/EndpointReferenceUtils.java Mon Jan 14 11:08:14 2008
@@ -349,7 +349,6 @@
             for (Object obj : metadata.getAny()) {
                 if (obj instanceof Element) {
                     Node node = (Element)obj;
-                    System.out.println(node.getNamespaceURI() + ":" + node.getNodeName());
                     if (node.getNamespaceURI().equals(JAXWSAConstants.NS_WSAW)
                         && node.getNodeName().contains("InterfaceName")) {