Interface FtpClientSession
-
- All Known Implementing Classes:
FtpClientSessionImpl
public interface FtpClientSessionCreated by The eXo Platform SAS .- Version:
- $Id: $
- Author:
- Vitaly Guly
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()booleanconnect()booleanconnect(int attemptsCount)intexecuteCommand(FtpCommand command)intexecuteCommand(FtpCommand command, int expectReply, int attemptsCount)SocketgetClientSocket()FtpDataTransivergetDataTransiver()StringgetSystemType()voidsetDataTransiver(FtpDataTransiver dataTransiver)voidsetSystemType(String systemType)
-
-
-
Method Detail
-
getClientSocket
Socket getClientSocket()
-
close
void close()
-
executeCommand
int executeCommand(FtpCommand command) throws Exception
- Throws:
Exception
-
executeCommand
int executeCommand(FtpCommand command, int expectReply, int attemptsCount) throws Exception
- Throws:
Exception
-
setSystemType
void setSystemType(String systemType)
-
getSystemType
String getSystemType()
-
setDataTransiver
void setDataTransiver(FtpDataTransiver dataTransiver)
-
getDataTransiver
FtpDataTransiver getDataTransiver()
-
-