Interface OrderTransitionStateAction
- All Superinterfaces:
OrderUpdateAction
,ResourceUpdateAction<OrderUpdateAction>
If the existing State has set transitions
, there must be a direct transition to the new State. If transitions
is not set, no validation is performed.
This update action produces the Order State Transition Message.
Example to create an instance using the builder pattern
OrderTransitionStateAction orderTransitionStateAction = OrderTransitionStateAction.builder()
.state(stateBuilder -> stateBuilder)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for OrderTransitionStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for OrderTransitionStateActionbuilder
(OrderTransitionStateAction template) create builder for OrderTransitionStateAction instancestatic OrderTransitionStateAction
deepCopy
(OrderTransitionStateAction template) factory method to create a deep copy of OrderTransitionStateActiongetForce()
Set totrue
to turn off validation.@NotNull @Valid StateResourceIdentifier
getState()
Value to set.static OrderTransitionStateAction
of()
factory methodstatic OrderTransitionStateAction
of
(OrderTransitionStateAction template) factory method to create a shallow copy OrderTransitionStateActionvoid
Set totrue
to turn off validation.void
setState
(StateResourceIdentifier state) Value to set.static com.fasterxml.jackson.core.type.TypeReference<OrderTransitionStateAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderUpdateAction
getAction, withOrderUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
TRANSITION_STATE
discriminator value for OrderTransitionStateAction- See Also:
-
-
Method Details
-
getState
Value to set. If there is no State yet, the new State must be an initial State.
- Returns:
- state
-
getForce
Boolean getForce()Set to
true
to turn off validation.- Returns:
- force
-
setState
Value to set. If there is no State yet, the new State must be an initial State.
- Parameters:
state
- value to be set
-
setForce
Set to
true
to turn off validation.- Parameters:
force
- value to be set
-
of
factory method- Returns:
- instance of OrderTransitionStateAction
-
of
factory method to create a shallow copy OrderTransitionStateAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of OrderTransitionStateAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderTransitionStateAction- Returns:
- builder
-
builder
create builder for OrderTransitionStateAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withOrderTransitionStateAction
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-