| Package | Description |
|---|---|
| oracle.fmwplatform.actionframework.api.v2 | |
| oracle.fmwplatform.actionframework.api.v2.picker |
| Modifier and Type | Method and Description |
|---|---|
Action |
ActionFactory.getAction(String actionName)
Return the action associated with the provided action name.
|
Action |
ActionFactory.getAction(String actionName, ActionType actionType)
Return the action associated with the action name using the provided oracle home as a search location.
|
Action |
ActionFactory.getAction(String actionName, String oracleHome)
Return the action associated with the action name using the provided oracle home as a search location.
|
Action |
ActionFactory.getAction(String actionName, String oracleHome, ActionType actionType)
Return the action associated with the action name using the provided oracle home as a search location.
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Action> |
ActionClassInfo.getActionClass()
Return the class of this action.
|
Class<? extends Action> |
ActionFactory.getClassForName(String className, String oracleHome)
Return the class object for a standard action class.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ActionClassInfo.setActionClass(Class<? extends Action> actionClass)
Set the class of this action.
|
| Constructor and Description |
|---|
ActionClassInfo(String actionName, Class<? extends Action> actionClass, ActionType actionType)
Create an ActionClassInfo initializing name, class, and type.
|
| Modifier and Type | Method and Description |
|---|---|
Class<? extends Action> |
ActionPickerByClass.getRequestedActionClass()
Return the class this picker is configured to locate.
|
Class<? extends Action> |
ActionPickerByClass.pickAction(List<ActionClassInfo> actions) |
Class<? extends Action> |
ActionPicker.pickAction(List<ActionClassInfo> actions)
This method is called to select the action to be called for a list of actions with the same name.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ActionPickerByClass.setRequestedActionClass(Class<? extends Action> requestedActionClass)
Set the class to be used to locate actions by this picker.
|
| Constructor and Description |
|---|
ActionPickerByClass(Class<? extends Action> requestedActionClass)
Create an ActionPickerByClass for the passed action class.
|