Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.4.0)
E15995-03


oracle.webcenter.framework.resource.view
Enum ResourceActionHandler.ResourceActionedResult

java.lang.Object
  extended by java.lang.Enum<ResourceActionHandler.ResourceActionedResult>
      extended by oracle.webcenter.framework.resource.view.ResourceActionHandler.ResourceActionedResult

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResourceActionHandler.ResourceActionedResult>
Enclosing interface:
ResourceActionHandler

public static enum ResourceActionHandler.ResourceActionedResult
extends java.lang.Enum<ResourceActionHandler.ResourceActionedResult>

This enum describes the values that should be returned by the resourceActioned() method to indicate what action the WebCenter service framework should take.

Since:
11.1.1.4.0

Enum Constant Summary
DEFAULT
          Let the usage of the resourceActionBehaviour tag determine what action should be taken (ADF inline popup or RAH navigation).
DO_NAVIGATION
          Handle the action using the RAH navigation APIs viewTaskflow(), viewPage() or viewResourceAsPage().
DO_POPUP
          Handle this action using the ADF inline popup on the page (where available), otherwise invoke the RAH navigation.
HANDLED
          The action has already been handled by the resourceActioned() API and the WebCenter service framework should do nothing further with regards to this action.

 

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

DEFAULT

public static final ResourceActionHandler.ResourceActionedResult DEFAULT
Let the usage of the resourceActionBehaviour tag determine what action should be taken (ADF inline popup or RAH navigation).

DO_POPUP

public static final ResourceActionHandler.ResourceActionedResult DO_POPUP
Handle this action using the ADF inline popup on the page (where available), otherwise invoke the RAH navigation.

DO_NAVIGATION

public static final ResourceActionHandler.ResourceActionedResult DO_NAVIGATION
Handle the action using the RAH navigation APIs viewTaskflow(), viewPage() or viewResourceAsPage().

HANDLED

public static final ResourceActionHandler.ResourceActionedResult HANDLED
The action has already been handled by the resourceActioned() API and the WebCenter service framework should do nothing further with regards to this action.

Method Detail

values

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

valueOf

public static ResourceActionHandler.ResourceActionedResult 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 Java API Reference for Oracle WebCenter
11g Release 1 (11.1.1.4.0)
E15995-03


Copyright © 2009, 2011, Oracle and/or its affiliates. All rights reserved.