eu.semiramis.identityaggregator
Enum Audit.SemiramisEventId

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

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


Enum Constant Summary
ATTR_RELEASE
           
ATTR_REQ_RECEIVED
           
ATTR_REQ_SENT
           
ATTR_RESP_RECEIVED
           
ATTR_RESP_SENT
           
ATTR_TRANSLATION
           
AUTHENTICATION
           
AUTHN_REQ_RECEIVED
           
AUTHN_REQ_SENT
           
AUTHN_RESP_RECEIVED
           
AUTHN_RESP_SENT
           
AUTHZ_DENIED_BY_POLICY
           
AUTHZ_DENIED_BY_USER
           
AUTHZ_PERMITTED_BY_POLICY
           
AUTHZ_PERMITTED_BY_USER
           
AUTHZ_REQ_RECEIVED
           
AUTHZ_REQ_SENT
           
AUTHZ_RESP_RECEIVED
           
AUTHZ_RESP_SENT
           
AUTHZ_TOKEN_RELEASE
           
UNKNOWN_MESSAGE_RECEIVED
           
 
Method Summary
 java.lang.String getEventId()
           
static Audit.SemiramisEventId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Audit.SemiramisEventId[] 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

AUTHZ_PERMITTED_BY_POLICY

public static final Audit.SemiramisEventId AUTHZ_PERMITTED_BY_POLICY

AUTHZ_DENIED_BY_POLICY

public static final Audit.SemiramisEventId AUTHZ_DENIED_BY_POLICY

AUTHZ_PERMITTED_BY_USER

public static final Audit.SemiramisEventId AUTHZ_PERMITTED_BY_USER

AUTHZ_DENIED_BY_USER

public static final Audit.SemiramisEventId AUTHZ_DENIED_BY_USER

ATTR_RELEASE

public static final Audit.SemiramisEventId ATTR_RELEASE

AUTHZ_TOKEN_RELEASE

public static final Audit.SemiramisEventId AUTHZ_TOKEN_RELEASE

ATTR_TRANSLATION

public static final Audit.SemiramisEventId ATTR_TRANSLATION

AUTHENTICATION

public static final Audit.SemiramisEventId AUTHENTICATION

AUTHN_REQ_SENT

public static final Audit.SemiramisEventId AUTHN_REQ_SENT

AUTHN_RESP_SENT

public static final Audit.SemiramisEventId AUTHN_RESP_SENT

AUTHN_REQ_RECEIVED

public static final Audit.SemiramisEventId AUTHN_REQ_RECEIVED

AUTHN_RESP_RECEIVED

public static final Audit.SemiramisEventId AUTHN_RESP_RECEIVED

ATTR_REQ_SENT

public static final Audit.SemiramisEventId ATTR_REQ_SENT

ATTR_RESP_SENT

public static final Audit.SemiramisEventId ATTR_RESP_SENT

ATTR_REQ_RECEIVED

public static final Audit.SemiramisEventId ATTR_REQ_RECEIVED

ATTR_RESP_RECEIVED

public static final Audit.SemiramisEventId ATTR_RESP_RECEIVED

AUTHZ_REQ_SENT

public static final Audit.SemiramisEventId AUTHZ_REQ_SENT

AUTHZ_RESP_SENT

public static final Audit.SemiramisEventId AUTHZ_RESP_SENT

AUTHZ_REQ_RECEIVED

public static final Audit.SemiramisEventId AUTHZ_REQ_RECEIVED

AUTHZ_RESP_RECEIVED

public static final Audit.SemiramisEventId AUTHZ_RESP_RECEIVED

UNKNOWN_MESSAGE_RECEIVED

public static final Audit.SemiramisEventId UNKNOWN_MESSAGE_RECEIVED
Method Detail

values

public static Audit.SemiramisEventId[] 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.SemiramisEventId c : Audit.SemiramisEventId.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.SemiramisEventId 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