Package oracle.security.am.plugin
Interface PluginExecutionStrategy
- All Superinterfaces:
GenericPluginService
- All Known Implementing Classes:
AbstractPluginExecutionStrategy
PluginExecutionStrategy
Plug-in Execution Strategy provided
the flexibility to control the execution of multiple plug-ins
which gets executed one after other. This particularly useful in chained authentication
module execution.
User should be able to provide the next plug-in to be executed from the list of
plug-ins configured using a PluginExecutionStrategy plug-in implementation.- Since:
- OAM 11.1.1.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.security.am.plugin.GenericPluginService
GenericPluginService.QueryKey
-
Method Summary
Modifier and TypeMethodDescriptionprocessExecutionStrategy<wbr>(PluginContext context, String currentPlugin, ExecutionStatus currentPluginStatus, List<String> pluginList)
processExecutionStrategy
method will be called before execution of the first module and after execution of each modules in the module list.Methods inherited from interface oracle.security.am.plugin.GenericPluginService
getID, getLogger, getMaxWaitIntervel, getMonitoringData, getMonitoringStatus, getPluginConfig, initialize, poweronSelfTest, shutdown
-
Method Details
-
processExecutionStrategy
ModuleAdvice processExecutionStrategy<wbr>(PluginContext context, String currentPlugin, ExecutionStatus currentPluginStatus, List<String> pluginList)processExecutionStrategy
method will be called before execution of the first module and after execution of each modules in the module list. Next module will be called based on the module name specified in the ModuleAdvice.- Parameters:
context
- context of the plug-in.aPluginContext
object that will contain the execution context for plug-ins.currentPlugin
- the current plug-in that is executed. If it is called before the execution.
should have the proper advice and the next module name set. Plugin execution will continue till ModuleAdvice returns anModuleAdvice
Advice.STOP
advicecurrentPluginStatus
- is the status of the current plugin execution. aExecutionStatus
object will be provided to the strategy. This will be null when the strategy is called before execution.pluginList
- the plugin list- Returns:
- the module advice
-