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
Enum ExecutionStatus

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

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

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

Status of the plug-in execution. ABORT and plug-in missing will be treated the same way. If a plug-in is missing during authentication status ABORT will be returned.

Since:
OAM 11.1.1.5.0
Version:
OAM 11.1.2.0.0

Enum Constant Summary
ABORT
          Exception during plug-in will result in Abort status.
FAILURE
          Plug-in failure status.
PAUSE
          Plug-in execution is not complete and needs input to continue execution
SUCCESS
          Plug-in success status.

 

Method Summary
 ExecutionAction getAction()
          Deprecated. 
 int getErrorCode()
          Deprecated. 
 java.lang.String getErrorMsg()
          Deprecated. 
 int getStatus()
          Gets the status.
 void setAction(ExecutionAction action)
          Deprecated. 
 void setErrorCode(int errorCode)
          Deprecated. 
 void setErrorMsg(java.lang.String errorMsg)
          Deprecated. 
static ExecutionStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExecutionStatus[] 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

SUCCESS

public static final ExecutionStatus SUCCESS
Plug-in success status. PluginExecutionStrategy will decide the next plug-in to be executed

FAILURE

public static final ExecutionStatus FAILURE
Plug-in failure status. Do not execute next plug-in. (we can define opcode for detail msg.)

ABORT

public static final ExecutionStatus ABORT
Exception during plug-in will result in Abort status. (we can define the opcode for detail msg.)

PAUSE

public static final ExecutionStatus PAUSE
Plug-in execution is not complete and needs input to continue execution

Method Detail

values

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

valueOf

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

getStatus

public int getStatus()
Gets the status.
Returns:
the status

setErrorMsg

@Deprecated
public void setErrorMsg(java.lang.String errorMsg)
Deprecated. 

getErrorMsg

@Deprecated
public java.lang.String getErrorMsg()
Deprecated. 

setErrorCode

@Deprecated
public void setErrorCode(int errorCode)
Deprecated. 

getErrorCode

@Deprecated
public int getErrorCode()
Deprecated. 

getAction

@Deprecated
public ExecutionAction getAction()
Deprecated. 

setAction

@Deprecated
public void setAction(ExecutionAction action)
Deprecated. 

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.