java.lang.Object
org.mrbook.mrpostman.another.summary.CmdSummary
- public class CmdSummary
- extends java.lang.Object
Command Summary class. This will store the summary information for a particular POP command execution.
CVSID
public static final java.lang.String CVSID
- See Also:
- Constant Field Values
TOP
public static final int TOP
- See Also:
- Constant Field Values
DELE
public static final int DELE
- See Also:
- Constant Field Values
RETR
public static final int RETR
- See Also:
- Constant Field Values
type
private int type
issued
private boolean issued
success
private boolean success
errors
private java.lang.String errors
CmdSummary
public CmdSummary(int type)
success
public void success()
failure
public void failure(java.lang.String errMsg)
isIssued
public boolean isIssued()
isSuccess
public boolean isSuccess()
getErrors
public java.lang.String getErrors()
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).