Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 84749 invoked from network); 18 Mar 2005 04:11:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 Mar 2005 04:11:03 -0000 Received: (qmail 28115 invoked by uid 500); 18 Mar 2005 04:11:02 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 28074 invoked by uid 500); 18 Mar 2005 04:11:01 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 28057 invoked by uid 99); 18 Mar 2005 04:11:01 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 17 Mar 2005 20:11:01 -0800 Received: (qmail 84713 invoked by uid 65534); 18 Mar 2005 04:11:00 -0000 Message-ID: <20050318041100.84712.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Fri, 18 Mar 2005 04:11:00 -0000 Subject: svn commit: r158020 - directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/apache/ldap/server/jndi/Interceptor.java directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/apache/ldap/server/jndi/InterceptorChain.java To: commits@directory.apache.org From: trustin@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: trustin Date: Thu Mar 17 20:10:59 2005 New Revision: 158020 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D158020 Log: Fixed indentation Eclipse screwed up. Modified: directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/Interceptor.java directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/InterceptorChain.java Modified: directory/apacheds/branches/interceptor_revamp/core/src/main/java= /org/apache/ldap/server/jndi/Interceptor.java URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/interceptor_= revamp/core/src/main/java/org/apache/ldap/server/jndi/Interceptor.java?view= =3Ddiff&r1=3D158019&r2=3D158020 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/Interceptor.java (original) +++ directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/Interceptor.java Thu Mar 17 20:10:59 2005 @@ -31,22 +31,22 @@ */ public interface Interceptor { - /** - * Intializes this interceptor. This is invoked by directory service - * provider when this intercepter is loaded into invocation chain. - *=20 - * @param config the configuration properties for this interceptor - * @throws NamingException if failed to initialize this interceptor - */ - void init( Properties config ) throws NamingException; + /** + * Intializes this interceptor. This is invoked by directory service + * provider when this intercepter is loaded into invocation chain. + *=20 + * @param config the configuration properties for this interceptor + * @throws NamingException if failed to initialize this interceptor + */ + void init( Properties config ) throws NamingException; =20 - /** - * Deinitialized this interceptor. This is invoked by directory service - * provider when this intercepter is unloaded from invocation chain. - */ - void destroy(); + /** + * Deinitialized this interceptor. This is invoked by directory servi= ce + * provider when this intercepter is unloaded from invocation chain. + */ + void destroy(); =20 - /** + /** * Process a particular invocation. You can pass control to * nextInterceptor by invoking {@link #invoke(Interceptor= , Invocation)}.=20 * @@ -55,5 +55,5 @@ * @throws NamingException on failures while handling the invokation */ void invoke( Interceptor nextInterceptor, Invocation invocation ) - throws NamingException; + throws NamingException; } Modified: directory/apacheds/branches/interceptor_revamp/core/src/main/java= /org/apache/ldap/server/jndi/InterceptorChain.java URL: http://svn.apache.org/viewcvs/directory/apacheds/branches/interceptor_= revamp/core/src/main/java/org/apache/ldap/server/jndi/InterceptorChain.java= ?view=3Ddiff&r1=3D158019&r2=3D158020 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/InterceptorChain.java (original) +++ directory/apacheds/branches/interceptor_revamp/core/src/main/java/org/a= pache/ldap/server/jndi/InterceptorChain.java Thu Mar 17 20:10:59 2005 @@ -12,29 +12,23 @@ */ public class InterceptorChain { -=09 - public Interceptor getInterceptor( String name ) - { - =09 - } + public Interceptor getInterceptor( String name ) + { + } =20 - public void addFirst( String name, Interceptor interceptor ) - { - =09 - } -=09 - public void addLast( String name, Interceptor interceptor ) - { - =09 - } -=09 - public void addBefore( Interceptor other, String name, Interceptor interc= eptor ) - { - =09 - } -=09 - public void addAfter( Interceptor other, String name, Interceptor interce= ptor ) - { - =09 - } + public void addFirst( String name, Interceptor interceptor ) + { + } + + public void addLast( String name, Interceptor interceptor ) + { + } + + public void addBefore( Interceptor other, String name, Interceptor int= erceptor ) + { + } + + public void addAfter( Interceptor other, String name, Interceptor inte= rceptor ) + { + } }