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