Interface TargetRelatedRequest
-
- All Superinterfaces:
com.broadleafcommerce.common.messaging.Securable,Serializable,TransitionRequest
- All Known Implementing Classes:
WorkflowPromoteRequest,WorkflowRebaseRequest,WorkflowRejectRequest
public interface TargetRelatedRequest extends TransitionRequest
Represents aTransitionRequestthat requires another sandbox target state be declared in order to identify the recipient of changes being moved from an original item.- Author:
- Jeff Fischer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetTargetLevel()The level for which the transition is targeted.StringgetTargetSandboxId()The id for the sandbox for which the transition is targeted.StringgetTargetStage()The informational stage for which the transition is targeted.voidsetTargetSandboxId(String targetSandboxId)The id for the sandbox for which the transition is targeted.voidsetTargetStage(String targetStage)The informational stage for which the transition is targeted.-
Methods inherited from interface com.broadleafcommerce.common.messaging.Securable
getToken, setToken
-
Methods inherited from interface com.broadleafcommerce.data.tracking.core.transition.TransitionRequest
getApplicationId, getAuthor, getCatalogId, getContextId, getEntity, getLevel, getMessage, getRouteKey, getSandboxId, getStage, getTransferTypeIdMap, getVisibleFromCatalog, setApplicationId, setCatalogId, setMessage, setStage, setVisibleFromCatalog
-
-
-
-
Method Detail
-
getTargetLevel
Integer getTargetLevel()
The level for which the transition is targeted. SeeTracking.getLevel()for more information.- Returns:
- The level for which the transition is targeted
-
getTargetSandboxId
String getTargetSandboxId()
The id for the sandbox for which the transition is targeted.- Returns:
- The id for the sandbox for which the transition is targeted
-
setTargetSandboxId
void setTargetSandboxId(String targetSandboxId)
The id for the sandbox for which the transition is targeted.- Parameters:
targetSandboxId- The id for the sandbox for which the transition is targeted
-
getTargetStage
String getTargetStage()
The informational stage for which the transition is targeted.- Returns:
- The informational stage for which the transition is targeted
-
setTargetStage
void setTargetStage(String targetStage)
The informational stage for which the transition is targeted.- Parameters:
targetStage- The informational stage for which the transition is targeted
-
-