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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for OrderTransitionStateAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for OrderTransitionStateActionbuilder(OrderTransitionStateAction template) create builder for OrderTransitionStateAction instancecopyDeep()static OrderTransitionStateActiondeepCopy(OrderTransitionStateAction template) factory method to create a deep copy of OrderTransitionStateActiongetForce()Set totrueto turn off validation.@NotNull @Valid StateResourceIdentifiergetState()Value to set.static OrderTransitionStateActionof()factory methodstatic OrderTransitionStateActionof(OrderTransitionStateAction template) factory method to create a shallow copy OrderTransitionStateActionvoidSet totrueto turn off validation.voidsetState(StateResourceIdentifier state) Value to set.static com.fasterxml.jackson.core.type.TypeReference<OrderTransitionStateAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderUpdateAction
getAction, withOrderUpdateActionMethods 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
trueto 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
trueto 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
-
copyDeep
OrderTransitionStateAction copyDeep()- Specified by:
copyDeepin interfaceOrderUpdateAction
-
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
-