Package oracle.security.am.plugin
Interface ModuleAdvice
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 theAdviceassociated with the ModuleAdvice.returns the module name that should be executed next.
-
Method Details
-
getAdvice
Advice getAdvice()returns theAdviceassociated with the ModuleAdvice.to abort the execution flow.Advice.ABORTsignaling the end of the execution.Advice.STOPto continue the execution.Advice.CONTINUE
- Returns:
- the advice
-
getModuleName
String getModuleName()returns the module name that should be executed next.- Returns:
- moduleName value.
-