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 Type
    Method
    Description
    returns the Advice associated with the ModuleAdvice.
    returns the module name that should be executed next.
  • Method Details

    • getAdvice

      Advice getAdvice()
      returns the 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.
      Returns:
      the advice
    • getModuleName

      String getModuleName()
      returns the module name that should be executed next.
      Returns:
      moduleName value.