package javax.baja.platform; import java.io.IOException; import java.net.ConnectException; import javax.baja.file.BFileSpace; import javax.baja.security.AuthenticationException; public interface FileManager { BFileSpace getFileSpace() throws ConnectException, AuthenticationException; void transfer(FileTransferOperation fileTransferOperation, IPlatformOperationListener iPlatformOperationListener) throws ConnectException, AuthenticationException, IOException; }