Interface FTPResponse
-
- All Known Implementing Classes:
FTPAccessDeniedException
,FTPDirectoryNotEmptyException
,FTPFileAlreadyExistsException
,FTPFileSystemException
,FTPNoSuchFileException
,FTPNotDirectoryException
,FTPNotLinkException
public interface FTPResponse
Represents a response from an FTP server.- Author:
- Rob Spoor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getReplyCode()
Returns the reply code of the FTP response.String
getReplyString()
Returns the entire text from the FTP response.
-
-
-
Method Detail
-
getReplyCode
int getReplyCode()
Returns the reply code of the FTP response.- Returns:
- The integer value of the reply code of the FTP response.
-
getReplyString
String getReplyString()
Returns the entire text from the FTP response.- Returns:
- The entire text from the FTP response.
-
-