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)