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

panda.net.pop3.POP3Reply Maven / Gradle / Ivy

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