Class CheckOrderAction
- java.lang.Object
-
- de.hybris.platform.processengine.action.AbstractAction<T>
-
- de.hybris.platform.processengine.action.AbstractSimpleDecisionAction<OrderProcessModel>
-
- de.hybris.platform.b2ctelcofulfillmentprocess.actions.order.CheckOrderAction
-
- All Implemented Interfaces:
de.hybris.platform.processengine.spring.Action<OrderProcessModel>
public class CheckOrderAction extends de.hybris.platform.processengine.action.AbstractSimpleDecisionAction<OrderProcessModel>
This example action checks the order for required data in the business process. Skipping this action may result in failure in one of the subsequent steps of the process. The relation between the order and the business process is defined in basecommerce extension through item OrderProcess. Therefore if your business process has to access the order (a typical case), it is recommended to use the OrderProcess as a parentClass instead of the plain BusinessProcess.
-
-
Constructor Summary
Constructors Constructor Description CheckOrderAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description de.hybris.platform.processengine.action.AbstractSimpleDecisionAction.TransitionexecuteAction(OrderProcessModel process)protected CheckOrderServicegetCheckOrderService()voidsetCheckOrderService(CheckOrderService checkOrderService)-
Methods inherited from class de.hybris.platform.processengine.action.AbstractSimpleDecisionAction
execute, getTransitions
-
Methods inherited from class de.hybris.platform.processengine.action.AbstractAction
createTransitions, getModelService, getProcessParameterHelper, getProcessParameterValue, refresh, save, setModelService, setOrderStatus, setProcessParameterHelper
-
-
-
-
Method Detail
-
executeAction
public de.hybris.platform.processengine.action.AbstractSimpleDecisionAction.Transition executeAction(OrderProcessModel process)
- Specified by:
executeActionin classde.hybris.platform.processengine.action.AbstractSimpleDecisionAction<OrderProcessModel>
-
getCheckOrderService
protected CheckOrderService getCheckOrderService()
-
setCheckOrderService
public void setCheckOrderService(CheckOrderService checkOrderService)
-
-