Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 49794 invoked from network); 24 Oct 2003 08:43:52 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 24 Oct 2003 08:43:52 -0000 Received: (qmail 3286 invoked by uid 500); 24 Oct 2003 08:43:26 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 3229 invoked by uid 500); 24 Oct 2003 08:43:26 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 3218 invoked by uid 500); 24 Oct 2003 08:43:25 -0000 Delivered-To: apmail-cocoon-2.1-cvs@apache.org Received: (qmail 3215 invoked from network); 24 Oct 2003 08:43:25 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 24 Oct 2003 08:43:25 -0000 Received: (qmail 49745 invoked by uid 1260); 24 Oct 2003 08:43:50 -0000 Date: 24 Oct 2003 08:43:50 -0000 Message-ID: <20031024084350.49744.qmail@minotaur.apache.org> From: cziegeler@apache.org To: cocoon-2.1-cvs@apache.org Subject: cvs commit: cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/components PipelineAuthenticator.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N cziegeler 2003/10/24 01:43:50 Modified: src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/components PipelineAuthenticator.java Log: Remove obsolete code Revision Changes Path 1.8 +2 -15 cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/components/PipelineAuthenticator.java Index: PipelineAuthenticator.java =================================================================== RCS file: /home/cvs/cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/components/PipelineAuthenticator.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- PipelineAuthenticator.java 24 Oct 2003 08:41:46 -0000 1.7 +++ PipelineAuthenticator.java 24 Oct 2003 08:43:50 -0000 1.8 @@ -53,9 +53,6 @@ import java.io.IOException; import org.apache.avalon.framework.activity.Disposable; -import org.apache.avalon.framework.context.Context; -import org.apache.avalon.framework.context.ContextException; -import org.apache.avalon.framework.context.Contextualizable; import org.apache.avalon.framework.logger.AbstractLogEnabled; import org.apache.avalon.framework.service.ServiceException; import org.apache.avalon.framework.service.ServiceManager; @@ -87,11 +84,8 @@ */ public class PipelineAuthenticator extends AbstractLogEnabled - implements Serviceable, ThreadSafe, Disposable, Contextualizable, Authenticator { + implements Serviceable, ThreadSafe, Disposable, Authenticator { - /** The context */ - protected Context context; - /** The service manager */ protected ServiceManager manager; @@ -314,13 +308,6 @@ this.resolver = null; } } - - /* (non-Javadoc) - * @see org.apache.avalon.framework.context.Contextualizable#contextualize(org.apache.avalon.framework.context.Context) - */ - public void contextualize(Context context) throws ContextException { - this.context = context; - } /* (non-Javadoc) * @see org.apache.cocoon.webapps.authentication.components.Authenticator#logout(org.apache.cocoon.webapps.authentication.user.UserHandler)