Skip navigation links

Oracle Fusion Middleware Extensibility Java API Reference for Oracle Access Management Access Manager
11g Release 2 (11.1.2.1.0)

E27137-02


oracle.security.am.plugin.impl
Enum UserActionMetaData

java.lang.Object
  extended by java.lang.Enum<UserActionMetaData>
      extended by oracle.security.am.plugin.impl.UserActionMetaData

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

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

UserActionMetaData - indicates the action type to be used with UserAction. The UserAction does a forward or a redirect (with a GET or POST) to the login page based on the UserActionMetaData value. Possible values for UserActionMetaData are : FORWARD, REDIRECT_GET, REDIRECT_POST

Since:
OAM 11.1.1.5.2
Version:
OAM 11.1.2.0.0

Enum Constant Summary
FORWARD
          FORWARD can be used to forward the request to the same container.
REDIRECT_GET
          Redirecting to a page with client/browser redirect.
REDIRECT_POST
          Redirecting to a page with client/browser redirect.

 

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

FORWARD

public static final UserActionMetaData FORWARD
FORWARD can be used to forward the request to the same container. If the Login web application is deployed in the same oam managed server instance FORWARD can be used.

REDIRECT_GET

public static final UserActionMetaData REDIRECT_GET
Redirecting to a page with client/browser redirect. This can be used for web application out side OAM server. Uses GET method

REDIRECT_POST

public static final UserActionMetaData REDIRECT_POST
Redirecting to a page with client/browser redirect. This can be used for web application out side OAM server. Uses POST method.

Method Detail

values

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

valueOf

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

Oracle Fusion Middleware Extensibility Java API Reference for Oracle Access Management Access Manager
11g Release 2 (11.1.2.1.0)

E27137-02


Copyright © 2013, Oracle Corp. All Rights Reserved.