org.xbib.io.ftp.fs.FTPResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftp-fs Show documentation
Show all versions of ftp-fs Show documentation
Java FTP client, Java FTP NIO file system, Groovy FTP client
package org.xbib.io.ftp.fs;
/**
* Represents a response from an FTP server.
*/
public interface FTPResponse {
/**
* Returns the reply code of the FTP response.
*
* @return The integer value of the reply code of the FTP response.
*/
int getReplyCode();
/**
* Returns the entire text from the FTP response.
*
* @return The entire text from the FTP response.
*/
String getReplyString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy