Class FlowActionHandlerAdapter
- java.lang.Object
-
- com.hybris.cockpitng.widgets.configurableflow.FlowActionHandlerAdapter
-
- Direct Known Subclasses:
ProxyFlowActionHandlerAdapter
public abstract class FlowActionHandlerAdapter extends java.lang.ObjectUseful adapter that is used forFlowActionHandlerin order to control configurable flow widget.
-
-
Constructor Summary
Constructors Constructor Description FlowActionHandlerAdapter(WidgetInstanceManager widgetInstanceManager)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidback()Perform back operation for current configurable flow widget instance.abstract voidcancel()Closes current configurable flow widget instance.abstract voidcustom()Perform custom operation for current configurable flow widget instance.abstract voiddone()Perform done operation for current configurable flow widget instance.WidgetInstanceManagergetWidgetInstanceManager()abstract voidnext()Perform next operation for current configurable flow widget instance.
-
-
-
Constructor Detail
-
FlowActionHandlerAdapter
public FlowActionHandlerAdapter(WidgetInstanceManager widgetInstanceManager)
-
-
Method Detail
-
getWidgetInstanceManager
public WidgetInstanceManager getWidgetInstanceManager()
-
cancel
public abstract void cancel()
Closes current configurable flow widget instance.
-
done
public abstract void done()
Perform done operation for current configurable flow widget instance.
-
back
public abstract void back()
Perform back operation for current configurable flow widget instance.
-
next
public abstract void next()
Perform next operation for current configurable flow widget instance.
-
custom
public abstract void custom()
Perform custom operation for current configurable flow widget instance.
-
-