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.Modifier and Type | Method and Description |
---|---|
Advice |
getAdvice()
returns the
Advice associated with the ModuleAdvice. |
java.lang.String |
getModuleName()
returns the module name that should be executed next.
|
Advice getAdvice()
Advice
associated with the ModuleAdvice.
Advice.ABORT
to abort the execution flow.
Advice.STOP
signaling the end of the execution.
Advice.CONTINUE
to continue the execution.
java.lang.String getModuleName()