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 2009/03/09 22:11:55 UTC

svn commit: r751840 - /cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java

Author: dkulp
Date: Mon Mar  9 21:11:55 2009
New Revision: 751840

URL: http://svn.apache.org/viewvc?rev=751840&view=rev
Log:
Fix the broken build

Modified:
    cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java

Modified: cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java?rev=751840&r1=751839&r2=751840&view=diff
==============================================================================
--- cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java (original)
+++ cxf/trunk/api/src/main/java/org/apache/cxf/phase/AbstractPhaseInterceptor.java Mon Mar  9 21:11:55 2009
@@ -43,48 +43,48 @@
     private final Set<String> after = new SortedArraySet<String>();
 
     /**
-	 * Instantiates the interceptor to live in a specified phase. The 
-	 * interceptor's id will be set to the name of the implementing class.
-	 *
-	 * @param phase the interceptor's phase
-	 */
-	public AbstractPhaseInterceptor(String phase) {
+     * Instantiates the interceptor to live in a specified phase. The 
+     * interceptor's id will be set to the name of the implementing class.
+     *
+     * @param phase the interceptor's phase
+     */
+    public AbstractPhaseInterceptor(String phase) {
         this(null, phase, false);
     }
 
     /**
-	 * Instantiates the interceptor with a specified id.
-	 *
-	 * @param i the interceptor's id
-	 * @param p the interceptor's phase
-	 */
+     * Instantiates the interceptor with a specified id.
+     *
+     * @param i the interceptor's id
+     * @param p the interceptor's phase
+     */
     public AbstractPhaseInterceptor(String i, String p) {
         this(i, p, false);
     }
 
     /**
-	 * Instantiates the interceptor and specifies if it gets a system 
-	 * determined unique id. If <code>uniqueId</code> is set to true the 
-	 * interceptor's id will be determined by the runtime. If 
-	 * <code>uniqueId</code> is set to false, the implementing class' name 
-	 * is used as the id.
-	 *
-	 * @param p the interceptor's phase
-	 * @param uniqueId
-	 */
+     * Instantiates the interceptor and specifies if it gets a system 
+     * determined unique id. If <code>uniqueId</code> is set to true the 
+     * interceptor's id will be determined by the runtime. If 
+     * <code>uniqueId</code> is set to false, the implementing class' name 
+     * is used as the id.
+     *
+     * @param p the interceptor's phase
+     * @param uniqueId
+     */
     public AbstractPhaseInterceptor(String phase, boolean uniqueId) {
         this(null, phase, uniqueId);
     }
 
     /**
-	 * Instantiates the interceptor with a specified id or with a system 
-	 * determined unique id. The specified id will be used unless 
-	 * <code>uniqueId</code> is set to true.
-	 *
-	 * @param i the interceptor's id
-	 * @param p the interceptor's phase
-	 * @param uniqueId
-	 */
+     * Instantiates the interceptor with a specified id or with a system 
+     * determined unique id. The specified id will be used unless 
+     * <code>uniqueId</code> is set to true.
+     *
+     * @param i the interceptor's id
+     * @param p the interceptor's phase
+     * @param uniqueId
+     */
     public AbstractPhaseInterceptor(String i, String p, boolean uniqueId) {
         if (i == null) {
             i = getClass().getName();
@@ -151,7 +151,7 @@
      * @param message the current Message
      * @return true if the current messaging role is that of requestor
      */
-	protected boolean isRequestor(T message) {
+    protected boolean isRequestor(T message) {
         return MessageUtils.isRequestor(message);
     }