org.apache.bcel.verifier
Class VerificationResult

java.lang.Object
  extended by org.apache.bcel.verifier.VerificationResult

public class VerificationResult
extends java.lang.Object

A VerificationResult is what a PassVerifier returns after verifying.

Version:
$Id: VerificationResult.java 386056 2006-03-15 11:31:56Z tcurdt $
Author:
Enver Haase

Field Summary
private  java.lang.String detailMessage
          The detailed message.
private  int numeric
          The numeric status.
static int VERIFIED_NOTYET
          Constant to indicate verification has not been tried yet.
private static java.lang.String VERIFIED_NOTYET_MSG
          This string is the canonical message for verifications that have not been tried yet.
static int VERIFIED_OK
          Constant to indicate verification was passed.
private static java.lang.String VERIFIED_OK_MSG
          This string is the canonical message for passed verification passes.
static int VERIFIED_REJECTED
          Constant to indicate verfication failed.
static VerificationResult VR_NOTYET
          Canonical VerificationResult for not-yet-tried verifications.
static VerificationResult VR_OK
          Canonical VerificationResult for passed verifications.
 
Constructor Summary
VerificationResult(int status, java.lang.String message)
          The usual constructor.
 
Method Summary
 boolean equals(java.lang.Object o)
          Returns if two VerificationResult instances are equal.
 java.lang.String getMessage()
          Returns a detailed message.
 int getStatus()
          Returns one one the VERIFIED_OK, VERIFIED_NOTYET, VERIFIED_REJECTED constants.
 int hashCode()
           
 java.lang.String toString()
          Returns a String representation of the VerificationResult.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

VERIFIED_NOTYET

public static final int VERIFIED_NOTYET
Constant to indicate verification has not been tried yet. This happens if some earlier verification pass did not return VERIFIED_OK.

See Also:
Constant Field Values

VERIFIED_OK

public static final int VERIFIED_OK
Constant to indicate verification was passed.

See Also:
Constant Field Values

VERIFIED_REJECTED

public static final int VERIFIED_REJECTED
Constant to indicate verfication failed.

See Also:
Constant Field Values

VERIFIED_NOTYET_MSG

private static final java.lang.String VERIFIED_NOTYET_MSG
This string is the canonical message for verifications that have not been tried yet. This happens if some earlier verification pass did not return VERIFIED_OK.

See Also:
Constant Field Values

VERIFIED_OK_MSG

private static final java.lang.String VERIFIED_OK_MSG
This string is the canonical message for passed verification passes.

See Also:
Constant Field Values

VR_NOTYET

public static final VerificationResult VR_NOTYET
Canonical VerificationResult for not-yet-tried verifications. This happens if some earlier verification pass did not return VERIFIED_OK.


VR_OK

public static final VerificationResult VR_OK
Canonical VerificationResult for passed verifications.


numeric

private int numeric
The numeric status.


detailMessage

private java.lang.String detailMessage
The detailed message.

Constructor Detail

VerificationResult

public VerificationResult(int status,
                          java.lang.String message)
The usual constructor.

Method Detail

getStatus

public int getStatus()
Returns one one the VERIFIED_OK, VERIFIED_NOTYET, VERIFIED_REJECTED constants.


getMessage

public java.lang.String getMessage()
Returns a detailed message.


hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object
Returns:
a hash code value for the object.

equals

public boolean equals(java.lang.Object o)
Returns if two VerificationResult instances are equal.

Overrides:
equals in class java.lang.Object

toString

public java.lang.String toString()
Returns a String representation of the VerificationResult.

Overrides:
toString in class java.lang.Object