All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.ftp.fs.FTPResponse Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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