Searched refs:FtpReplyCode (Results 1 – 6 of 6) sorted by relevance
36 private final FtpReplyCode code;46 code = FtpReplyCode.UNKNOWN_ERROR; in FtpProtocolException()56 public FtpProtocolException(String detail, FtpReplyCode code) { in FtpProtocolException()67 public FtpReplyCode getReplyCode() { in getReplyCode()
33 public enum FtpReplyCode { enum89 FtpReplyCode(int val) { in FtpReplyCode() method in FtpReplyCode240 public static FtpReplyCode find(int v) { in find()241 for (FtpReplyCode code : FtpReplyCode.values()) { in find()
822 public abstract FtpReplyCode getLastReplyCode(); in getLastReplyCode()
76 private FtpReplyCode lastReplyCode = null;497 lastReplyCode = FtpReplyCode.find(readServerResponse()); in readReply()504 if (lastReplyCode == FtpReplyCode.CLOSING_DATA_CONNECTION) { in readReply()699 if (getLastReplyCode() == FtpReplyCode.FILE_UNAVAILABLE) { in openPassiveDataConnection()1040 if (lastReplyCode == FtpReplyCode.NEED_PASSWORD) { in tryLogin()1057 … throw new sun.net.ftp.FtpProtocolException("Not connected yet", FtpReplyCode.BAD_SEQUENCE); in login()1096 … throw new sun.net.ftp.FtpProtocolException("Not connected yet", FtpReplyCode.BAD_SEQUENCE); in login()1106 if (lastReplyCode == FtpReplyCode.NEED_ACCOUNT) { in login()1752 if (lastReplyCode == FtpReplyCode.FILE_STATUS) { in getSize()1786 if (lastReplyCode == FtpReplyCode.FILE_STATUS) { in getLastModified()[all …]
197 public abstract sun.net.ftp.FtpReplyCode getLastReplyCode(); in getLastReplyCode()
1490 "ojluni/src/main/java/sun/net/ftp/FtpReplyCode.java",