Class CloneCartAction
- java.lang.Object
-
- de.hybris.platform.processengine.action.AbstractAction<T>
-
- de.hybris.platform.processengine.action.AbstractProceduralAction<ReplenishmentProcessModel>
-
- de.hybris.platform.b2bacceleratoraddon.actions.replenishment.CloneCartAction
-
- All Implemented Interfaces:
Action<ReplenishmentProcessModel>
public class CloneCartAction extends AbstractProceduralAction<ReplenishmentProcessModel>
Action for cloning carts.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.hybris.platform.processengine.action.AbstractProceduralAction
AbstractProceduralAction.Transition
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.processengine.action.AbstractAction
modelService, processParameterHelper
-
Fields inherited from interface de.hybris.platform.processengine.spring.Action
ERROR_RETURN_CODE, RETRY_RETURN_CODE
-
-
Constructor Summary
Constructors Constructor Description CloneCartAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
executeAction(ReplenishmentProcessModel process)
Executes thisAction
's business logic working on the givenBusinessProcessModel
.protected CartService
getCartService()
protected KeyGenerator
getGuidKeyGenerator()
protected TypeService
getTypeService()
protected UserService
getUserService()
void
setCartService(CartService cartService)
void
setGuidKeyGenerator(KeyGenerator guidKeyGenerator)
void
setTypeService(TypeService typeService)
void
setUserService(UserService userService)
-
Methods inherited from class de.hybris.platform.processengine.action.AbstractProceduralAction
execute, getTransitions
-
Methods inherited from class de.hybris.platform.processengine.action.AbstractAction
createTransitions, getModelService, getProcessParameterHelper, getProcessParameterValue, refresh, save, setModelService, setOrderStatus, setProcessParameterHelper
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.hybris.platform.processengine.spring.Action
getCurrentActionDefinitionContext
-
-
-
-
Method Detail
-
executeAction
public void executeAction(ReplenishmentProcessModel process) throws java.lang.Exception
Description copied from class:AbstractProceduralAction
Executes thisAction
's business logic working on the givenBusinessProcessModel
.- Specified by:
executeAction
in classAbstractProceduralAction<ReplenishmentProcessModel>
- Parameters:
process
- The process context to work on.- Throws:
RetryLaterException
java.lang.Exception
-
getCartService
protected CartService getCartService()
-
setCartService
public void setCartService(CartService cartService)
-
getTypeService
protected TypeService getTypeService()
-
setTypeService
public void setTypeService(TypeService typeService)
-
getUserService
protected UserService getUserService()
-
setUserService
public void setUserService(UserService userService)
-
getGuidKeyGenerator
protected KeyGenerator getGuidKeyGenerator()
-
setGuidKeyGenerator
public void setGuidKeyGenerator(KeyGenerator guidKeyGenerator)
-
-