Searched refs:FtpReplyCode (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpProtocolException.java36 private final FtpReplyCode code;
46 code = FtpReplyCode.UNKNOWN_ERROR;
56 public FtpProtocolException(String detail, FtpReplyCode code) {
65 * @return The {@link FtpReplyCode} associated with that exception.
67 public FtpReplyCode getReplyCode() {
H A DFtpReplyCode.java33 public enum FtpReplyCode { enum
89 FtpReplyCode(int val) { method in class:FtpReplyCode
235 * Static utility method to convert a value into a FtpReplyCode.
238 * @return the <code>FtpReplyCode</code> associated with the value.
240 public static FtpReplyCode find(int v) {
241 for (FtpReplyCode code : FtpReplyCode.values()) {
H A DFtpClient.java822 public abstract FtpReplyCode getLastReplyCode();
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java77 private FtpReplyCode lastReplyCode = null;
498 lastReplyCode = FtpReplyCode.find(readServerResponse());
505 if (lastReplyCode == FtpReplyCode.CLOSING_DATA_CONNECTION) {
688 if (getLastReplyCode() == FtpReplyCode.FILE_UNAVAILABLE) {
1028 if (lastReplyCode == FtpReplyCode.NEED_PASSWORD) {
1045 throw new sun.net.ftp.FtpProtocolException("Not connected yet", FtpReplyCode.BAD_SEQUENCE);
1084 throw new sun.net.ftp.FtpProtocolException("Not connected yet", FtpReplyCode.BAD_SEQUENCE);
1094 if (lastReplyCode == FtpReplyCode.NEED_ACCOUNT) {
1737 if (lastReplyCode == FtpReplyCode.FILE_STATUS) {
1771 if (lastReplyCode == FtpReplyCode
[all...]
/openjdk7/jdk/make/sun/net/
H A DFILES_java.gmk52 sun/net/ftp/FtpReplyCode.java \

Completed in 451 milliseconds