Interface FTPResponse
-
- All Known Implementing Classes:
FTPAccessDeniedException,FTPDirectoryNotEmptyException,FTPFileAlreadyExistsException,FTPFileSystemException,FTPNoSuchFileException,FTPNotDirectoryException,FTPNotLinkException
public interface FTPResponseRepresents a response from an FTP server.- Author:
- Rob Spoor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetReplyCode()Returns the reply code of the FTP response.StringgetReplyString()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.
-
-