antonio 2003/11/23 20:07:22
Modified:
src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/context
AuthenticationContextProvider.java
Log:
Organizing imports
Revision Changes Path
1.7 +3 -2
cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/context/AuthenticationContextProvider.java
Index: AuthenticationContextProvider.java
===================================================================
RCS file:
/home/cvs//cocoon-2.1/src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/context/AuthenticationContextProvider.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AuthenticationContextProvider.java 21 Oct 2003 12:39:16 -0000
1.6
+++ AuthenticationContextProvider.java 24 Nov 2003 04:07:22 -0000
1.7
@@ -57,6 +57,7 @@
import org.apache.avalon.framework.service.Serviceable;
import org.apache.avalon.framework.thread.ThreadSafe;
import org.apache.cocoon.ProcessingException;
+import org.apache.cocoon.webapps.authentication.AuthenticationConstants;
import org.apache.cocoon.webapps.authentication.AuthenticationManager;
import org.apache.cocoon.webapps.authentication.user.RequestState;
import org.apache.cocoon.webapps.authentication.user.UserHandler;
@@ -85,7 +86,7 @@
public SessionContext getSessionContext(String name)
throws ProcessingException {
AuthenticationContext context = null;
- if
(name.equals(org.apache.cocoon.webapps.authentication.AuthenticationConstants.SESSION_CONTEXT_NAME)
) {
+ if (name.equals(AuthenticationConstants.SESSION_CONTEXT_NAME) ) {
AuthenticationManager authManager = null;
RequestState state = null;