antonio 2003/11/23 20:00:35
Modified:
src/blocks/authentication-fw/java/org/apache/cocoon/webapps/authentication/components
PipelineAuthenticator.java
Log:
Organizing imports
Revision Changes Path
1.9 +5 -4
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.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- PipelineAuthenticator.java 24 Oct 2003 08:43:50 -0000 1.8
+++ PipelineAuthenticator.java 24 Nov 2003 04:00:34 -0000 1.9
@@ -59,6 +59,7 @@
import org.apache.avalon.framework.service.Serviceable;
import org.apache.avalon.framework.thread.ThreadSafe;
import org.apache.cocoon.ProcessingException;
+import org.apache.cocoon.components.source.SourceUtil;
import
org.apache.cocoon.webapps.authentication.configuration.HandlerConfiguration;
import org.apache.cocoon.webapps.authentication.user.UserHandler;
import org.apache.cocoon.webapps.session.MediaManager;
@@ -174,16 +175,16 @@
try {
Source source = null;
try {
- source =
org.apache.cocoon.components.source.SourceUtil.getSource(authenticationResourceName,
+ source = SourceUtil.getSource(authenticationResourceName,
null,
parameters,
this.resolver);
- doc =
org.apache.cocoon.components.source.SourceUtil.toDOM(source);
+ doc = SourceUtil.toDOM(source);
} catch (SAXException se) {
throw new ProcessingException(se);
} catch (SourceException se) {
- throw
org.apache.cocoon.components.source.SourceUtil.handle(se);
+ throw SourceUtil.handle(se);
} catch (IOException e) {
throw new ProcessingException(e);
} finally {