Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Access Management Mobile and Social


oracle.security.idaas.rest.provider.plugin
Enum SecurityEvent

java.lang.Object
  extended by java.lang.Enum<SecurityEvent>
      extended by oracle.security.idaas.rest.provider.plugin.SecurityEvent

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SecurityEvent>

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

Security event


Enum Constant Summary
CREATE_ACCESS_TOKEN
           
CREATE_CLIENT_TOKEN
           
CREATE_USER_TOKEN
           
MULTI_STEP_AUTHN
          Corresponding to Result.ResultStatus.Require_Multi_Step_Authn
REG_BUSINESS_CLIENT_APP
           
REG_SECURITY_CLIENT_APP
           
TERMINATE_USER_TOKEN
           
UPDATE_USER_TOKEN
           
VERIFY_ACCESS_TOKEN
           
VERIFY_CLIENT_TOKEN
           
VERIFY_TOKEN
          This VERIFY_TOKEN even is generic version of VERIFY_*_TOKEN event, as OIC server may not be able to determine the type of token being verified in some negative cases.
VERIFY_USER_TOKEN
           

 

Method Summary
static SecurityEvent valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SecurityEvent[] 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

REG_SECURITY_CLIENT_APP

public static final SecurityEvent REG_SECURITY_CLIENT_APP

REG_BUSINESS_CLIENT_APP

public static final SecurityEvent REG_BUSINESS_CLIENT_APP

CREATE_CLIENT_TOKEN

public static final SecurityEvent CREATE_CLIENT_TOKEN

VERIFY_CLIENT_TOKEN

public static final SecurityEvent VERIFY_CLIENT_TOKEN

CREATE_USER_TOKEN

public static final SecurityEvent CREATE_USER_TOKEN

VERIFY_USER_TOKEN

public static final SecurityEvent VERIFY_USER_TOKEN

UPDATE_USER_TOKEN

public static final SecurityEvent UPDATE_USER_TOKEN

TERMINATE_USER_TOKEN

public static final SecurityEvent TERMINATE_USER_TOKEN

CREATE_ACCESS_TOKEN

public static final SecurityEvent CREATE_ACCESS_TOKEN

VERIFY_ACCESS_TOKEN

public static final SecurityEvent VERIFY_ACCESS_TOKEN

VERIFY_TOKEN

public static final SecurityEvent VERIFY_TOKEN
This VERIFY_TOKEN even is generic version of VERIFY_*_TOKEN event, as OIC server may not be able to determine the type of token being verified in some negative cases.

MULTI_STEP_AUTHN

public static final SecurityEvent MULTI_STEP_AUTHN
Corresponding to Result.ResultStatus.Require_Multi_Step_Authn

Method Detail

values

public static SecurityEvent[] 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 (SecurityEvent c : SecurityEvent.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SecurityEvent 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

Skip navigation links

Copyright (c) 2012,
Oracle All Rights Reserved.
Built 06/05/2012 17:18:07 PDT