org.nhindirect.stagent.trust
Enum TrustError

java.lang.Object
  extended by java.lang.Enum<TrustError>
      extended by org.nhindirect.stagent.trust.TrustError
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TrustError>

public enum TrustError
extends java.lang.Enum<TrustError>

Enumeration of errors that can occur during a trust enforcement operation.

Author:
Greg Meyer, Umesh Madan

Enum Constant Summary
MissingRecipientCertificate
           
MissingSenderCertificate
           
MissingSenderSignature
           
NoTrustedRecipients
           
SignatureValidation
           
Unexpected
           
UnknownRecipient
           
UntrustedMessage
           
UntrustedSender
           
 
Method Summary
static TrustError valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TrustError[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Unexpected

public static final TrustError Unexpected

UntrustedMessage

public static final TrustError UntrustedMessage

UntrustedSender

public static final TrustError UntrustedSender

UnknownRecipient

public static final TrustError UnknownRecipient

MissingSenderSignature

public static final TrustError MissingSenderSignature

MissingSenderCertificate

public static final TrustError MissingSenderCertificate

MissingRecipientCertificate

public static final TrustError MissingRecipientCertificate

NoTrustedRecipients

public static final TrustError NoTrustedRecipients

SignatureValidation

public static final TrustError SignatureValidation
Method Detail

values

public static TrustError[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TrustError c : TrustError.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TrustError valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2010-2011 HNIN Direct. All Rights Reserved.