panda.net.pop3.POP3Reply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-nets Show documentation
Show all versions of panda-nets Show documentation
Panda Nets is a client side library of many basic Internet protocols.
package panda.net.pop3;
/***
* POP3Reply stores POP3 reply code constants.
***/
public final class POP3Reply {
/*** The reply code indicating success of an operation. ***/
public static final int OK = 0;
/*** The reply code indicating failure of an operation. ***/
public static final int ERROR = 1;
/**
* The reply code indicating intermediate response to a command.
*/
public static final int OK_INT = 2;
// Cannot be instantiated.
private POP3Reply() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy