eu.semiramis.identityaggregator
Enum Audit.AppLogEventId

java.lang.Object
  extended by java.lang.Enum<Audit.AppLogEventId>
      extended by eu.semiramis.identityaggregator.Audit.AppLogEventId
All Implemented Interfaces:
Audit.EventId, java.io.Serializable, java.lang.Comparable<Audit.AppLogEventId>
Enclosing class:
Audit

public static enum Audit.AppLogEventId
extends java.lang.Enum<Audit.AppLogEventId>
implements Audit.EventId


Enum Constant Summary
ATTRIBUTE_TRANSLATION_ERROR
           
ATTRIBUTE_TRANSLATION_INFO
           
AUTHORIZATION_ERROR
           
AUTHORIZATION_INFO
           
DESTINATION_NOT_FOUND
           
DISCOVERY_INFO
           
IA_CONNECTOR_INSTANTIATION_ERROR
           
IA_CS_INITIALIZATION_ERROR
           
IA_CS_INITIALIZATION_INFO
           
IA_INITIALIZATION_ERROR
           
IA_INITIALIZATION_INFO
           
ID_TRANSLATION_ERROR
           
ID_TRANSLATION_INFO
           
INTERNAL_POLICIES_NOT_FOUND
           
INVALID_SIGNATURE
           
POLICY_EVALUATION_ERROR
           
POLICY_EVALUATION_INFO
           
REQUEST_PROCESSING_ERROR
           
REQUEST_PROCESSING_INFO
           
RESPONSE_GENERATION_ERROR
           
RESPONSE_PROCESSING_ERROR
           
RESPONSE_PROCESSING_INFO
           
SIGNATURE_VALIDATION_ERROR
           
SIGNATURE_VALIDATION_INFO
           
TOKEN_PROCESSING_ERROR
           
UNAUTHORIZED_REQUEST
           
USER_ORIGIN_NOT_FOUND
           
WAYF_ERROR
           
WAYF_INFO
           
 
Method Summary
 java.lang.String getEventId()
           
static Audit.AppLogEventId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Audit.AppLogEventId[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

IA_INITIALIZATION_INFO

public static final Audit.AppLogEventId IA_INITIALIZATION_INFO

IA_INITIALIZATION_ERROR

public static final Audit.AppLogEventId IA_INITIALIZATION_ERROR

IA_CS_INITIALIZATION_INFO

public static final Audit.AppLogEventId IA_CS_INITIALIZATION_INFO

IA_CS_INITIALIZATION_ERROR

public static final Audit.AppLogEventId IA_CS_INITIALIZATION_ERROR

IA_CONNECTOR_INSTANTIATION_ERROR

public static final Audit.AppLogEventId IA_CONNECTOR_INSTANTIATION_ERROR

TOKEN_PROCESSING_ERROR

public static final Audit.AppLogEventId TOKEN_PROCESSING_ERROR

SIGNATURE_VALIDATION_INFO

public static final Audit.AppLogEventId SIGNATURE_VALIDATION_INFO

SIGNATURE_VALIDATION_ERROR

public static final Audit.AppLogEventId SIGNATURE_VALIDATION_ERROR

INVALID_SIGNATURE

public static final Audit.AppLogEventId INVALID_SIGNATURE

REQUEST_PROCESSING_INFO

public static final Audit.AppLogEventId REQUEST_PROCESSING_INFO

REQUEST_PROCESSING_ERROR

public static final Audit.AppLogEventId REQUEST_PROCESSING_ERROR

RESPONSE_PROCESSING_INFO

public static final Audit.AppLogEventId RESPONSE_PROCESSING_INFO

RESPONSE_PROCESSING_ERROR

public static final Audit.AppLogEventId RESPONSE_PROCESSING_ERROR

RESPONSE_GENERATION_ERROR

public static final Audit.AppLogEventId RESPONSE_GENERATION_ERROR

ATTRIBUTE_TRANSLATION_INFO

public static final Audit.AppLogEventId ATTRIBUTE_TRANSLATION_INFO

ATTRIBUTE_TRANSLATION_ERROR

public static final Audit.AppLogEventId ATTRIBUTE_TRANSLATION_ERROR

ID_TRANSLATION_INFO

public static final Audit.AppLogEventId ID_TRANSLATION_INFO

ID_TRANSLATION_ERROR

public static final Audit.AppLogEventId ID_TRANSLATION_ERROR

AUTHORIZATION_INFO

public static final Audit.AppLogEventId AUTHORIZATION_INFO

AUTHORIZATION_ERROR

public static final Audit.AppLogEventId AUTHORIZATION_ERROR

UNAUTHORIZED_REQUEST

public static final Audit.AppLogEventId UNAUTHORIZED_REQUEST

POLICY_EVALUATION_INFO

public static final Audit.AppLogEventId POLICY_EVALUATION_INFO

POLICY_EVALUATION_ERROR

public static final Audit.AppLogEventId POLICY_EVALUATION_ERROR

INTERNAL_POLICIES_NOT_FOUND

public static final Audit.AppLogEventId INTERNAL_POLICIES_NOT_FOUND

DISCOVERY_INFO

public static final Audit.AppLogEventId DISCOVERY_INFO

USER_ORIGIN_NOT_FOUND

public static final Audit.AppLogEventId USER_ORIGIN_NOT_FOUND

DESTINATION_NOT_FOUND

public static final Audit.AppLogEventId DESTINATION_NOT_FOUND

WAYF_INFO

public static final Audit.AppLogEventId WAYF_INFO

WAYF_ERROR

public static final Audit.AppLogEventId WAYF_ERROR
Method Detail

values

public static Audit.AppLogEventId[] 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 (Audit.AppLogEventId c : Audit.AppLogEventId.values())
    System.out.println(c);

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

valueOf

public static Audit.AppLogEventId 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

getEventId

public java.lang.String getEventId()
Specified by:
getEventId in interface Audit.EventId