[jboss-svn-commits] JBL Code SVN: r8901 - labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jan 18 13:21:30 EST 2007


Author: tfennelly
Date: 2007-01-18 13:21:30 -0500 (Thu, 18 Jan 2007)
New Revision: 8901

Modified:
   labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/RemoteGatewayListener.java
Log:
fixing compile errors

Modified: labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/RemoteGatewayListener.java
===================================================================
--- labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/RemoteGatewayListener.java	2007-01-18 17:38:24 UTC (rev 8900)
+++ labs/jbossesb/trunk/product/core/listeners/src/org/jboss/soa/esb/listeners/gateway/RemoteGatewayListener.java	2007-01-18 18:21:30 UTC (rev 8901)
@@ -23,25 +23,28 @@
 package org.jboss.soa.esb.listeners.gateway;
 
 import java.io.File;
+import java.io.IOException;
 
+import org.jboss.soa.esb.ConfigurationException;
 import org.jboss.soa.esb.addressing.EPR;
 import org.jboss.soa.esb.addressing.eprs.FTPEpr;
 import org.jboss.soa.esb.helpers.ConfigTree;
 import org.jboss.soa.esb.listeners.ListenerTagNames;
 import org.jboss.soa.esb.listeners.ListenerUtil;
+import org.jboss.soa.esb.services.registry.RegistryException;
 import org.jboss.soa.esb.util.FtpClientUtil;
 import org.jboss.soa.esb.util.RemoteFileSystem;
+import org.jboss.soa.esb.util.RemoteFileSystemException;
 import org.jboss.soa.esb.util.RemoteFileSystemFactory;
 
-import product.core.listeners.src.org.jboss.soa.esb.listeners.gateway.GatewayException;
+import org.jboss.soa.esb.listeners.gateway.GatewayException;
 
 public class RemoteGatewayListener extends FileGatewayListener
 {
 	protected RemoteGatewayListener(){}
 
 	public RemoteGatewayListener(GatewayListenerController commandListener,
-			ConfigTree config) throws ConfigurationException, RegistryException, GatewayException
-	{
+			ConfigTree config) throws ConfigurationException, RegistryException, GatewayException {
 		super(commandListener, config);
 	}
 




More information about the jboss-svn-commits mailing list