public interface OrderEditUpdateCommand extends UpdateCommandDsl<OrderEdit,OrderEditUpdateCommand>, MetaModelReferenceExpansionDsl<OrderEdit,OrderEditUpdateCommand,OrderEditExpansionModel<OrderEdit>>
OrderEdit
.
Known UpdateActions
OrderEdit
Modifier and Type | Method and Description |
---|---|
static OrderEditUpdateCommand |
of(Versioned<OrderEdit> versioned,
List<? extends UpdateAction<OrderEdit>> updateActions)
Creates a command to update a OrderEdit selected by its ID using several update actions.
|
static OrderEditUpdateCommand |
of(Versioned<OrderEdit> versioned,
UpdateAction<OrderEdit> updateAction,
UpdateAction<OrderEdit>... updateActions)
Creates a command to update a OrderEdit selected by its ID using one update action.
|
static OrderEditUpdateCommand |
ofKey(String key,
Long version,
List<? extends UpdateAction<OrderEdit>> updateActions)
Creates a command to update a OrderEdit selected by its key using several update actions.
|
static OrderEditUpdateCommand |
ofKey(String key,
Long version,
UpdateAction<OrderEdit> updateAction)
Creates a command to update a OrderEdit selected by its key using one update action.
|
plusUpdateActions, withAdditionalHttpQueryParameters, withUpdateActions, withVersion, withVersion
getUpdateActions
canDeserialize, deserialize, httpRequestIntent
plusExpansionPaths, withExpansionPaths
plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths
expansionPaths
static OrderEditUpdateCommand of(Versioned<OrderEdit> versioned, List<? extends UpdateAction<OrderEdit>> updateActions)
versioned
- the object to update (so directly a OrderEdit
) or just the version/ID information of itupdateActions
- the updates@SafeVarargs static OrderEditUpdateCommand of(Versioned<OrderEdit> versioned, UpdateAction<OrderEdit> updateAction, UpdateAction<OrderEdit>... updateActions)
versioned
- the object to update (so directly a OrderEdit
) or just the version/ID information of itupdateAction
- the update to performupdateActions
- additional updates to performstatic OrderEditUpdateCommand ofKey(String key, Long version, List<? extends UpdateAction<OrderEdit>> updateActions)
key
- the key of the OrderEdit to update, see OrderEdit.getKey()
version
- the current version of the OrderEdit, see OrderEdit.getVersion()
updateActions
- the updatesstatic OrderEditUpdateCommand ofKey(String key, Long version, UpdateAction<OrderEdit> updateAction)
key
- the key of the OrderEdit to update, see OrderEdit.getKey()
version
- the current version of the OrderEdit, see OrderEdit.getVersion()
updateAction
- the update to perform