Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle OAuth Service
11g Release 2 (11.1.2)

E57632-01


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

BEFORE_USER_CONSENT
          This BEFORE_USER_CONSENT facilitates authorization plugin usage in front channel flows i.e.
CREATE_ACCESS_TOKEN
          Under OAuth 2.0 protocol, authorization decision made by the (authorization) security plugin would treat the creation of resource access credentials in the same way, regardless credentials are in forms of Authorization Code, Access Token or Refresh 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_CLIENT_TOKEN
           
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

TERMINATE_CLIENT_TOKEN

public static final SecurityEvent TERMINATE_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
Under OAuth 2.0 protocol, authorization decision made by the (authorization) security plugin would treat the creation of resource access credentials in the same way, regardless credentials are in forms of Authorization Code, Access Token or Refresh Token.

VERIFY_ACCESS_TOKEN

public static final SecurityEvent VERIFY_ACCESS_TOKEN

BEFORE_USER_CONSENT

public static final SecurityEvent BEFORE_USER_CONSENT
This BEFORE_USER_CONSENT facilitates authorization plugin usage in front channel flows i.e. 3-legged use cases where user can take consent action. Authorization plugin can validate user, client and requested scopes combination have the right privileges (for example in fine grained authorization) for user to take consent action.

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) 2014,<BR/>Oracle and/or its affiliates. All Rights Reserved.
<BR/>