Package oracle.security.am.plugin
Interface ModuleAdvice
- All Known Implementing Classes:
ModuleAdviceImpl
public interface ModuleAdvice
ModuleAdvice
will encapsulate the result of
PluginExecutionStrategy
execution.
ModuleAdvice
will be returned by processExecutionStrategy()
method
in PluginExecutionStrategy
class.
getAdvice()
will give the Advice
.
and the getModuleName()
will return the module to be executed next.- Since:
- OAM 11.1.1.2.0
-
Method Summary
Modifier and TypeMethodDescriptionreturns theAdvice
associated with the ModuleAdvice.returns the module name that should be executed next.
-
Method Details
-
getAdvice
Advice getAdvice()returns theAdvice
associated with the ModuleAdvice.
to abort the execution flow.Advice.ABORT
signaling the end of the execution.Advice.STOP
to continue the execution.Advice.CONTINUE
- Returns:
- the advice
-
getModuleName
String getModuleName()returns the module name that should be executed next.- Returns:
- moduleName value.
-