| java.lang.Object com.enterprisedt.net.ftp.FTPReply
FTPReply | public class FTPReply (Code) | | Encapsulates the FTP server reply
author: Bruce Blackshaw version: $Revision: 1.6 $ |
cvsId | final public static String cvsId(Code) | | Revision control id
|
FTPReply | FTPReply(String replyCode, String replyText)(Code) | | Constructor. Only to be constructed
by this package, hence package access
Parameters: replyCode - the server's reply code Parameters: replyText - the server's reply text |
FTPReply | FTPReply(String replyCode, String replyText, String[] data)(Code) | | Constructor. Only to be constructed
by this package, hence package access
Parameters: replyCode - the server's reply code Parameters: replyText - the server's full reply text Parameters: data - data lines contained in reply text |
FTPReply | FTPReply(String reply)(Code) | | Constructor. Only to be constructed
by this package, hence package access
Parameters: rawReply - the server's raw reply |
getRawReply | public String getRawReply()(Code) | | Getter for raw reply
server's raw reply |
getReplyCode | public String getReplyCode()(Code) | | Getter for reply code
server's reply code |
getReplyData | public String[] getReplyData()(Code) | | Getter for reply data lines
array of data lines returned (if any). Nullif no data lines |
getReplyText | public String getReplyText()(Code) | | Getter for reply text
server's reply text |
|
|