public interface CustomerGroupUpdateCommand extends UpdateCommandDsl<CustomerGroup,CustomerGroupUpdateCommand>, MetaModelReferenceExpansionDsl<CustomerGroup,CustomerGroupUpdateCommand,CustomerGroupExpansionModel<CustomerGroup>>
Known UpdateActions
CustomerGroup
Modifier and Type | Method and Description |
---|---|
static CustomerGroupUpdateCommand |
of(Versioned<CustomerGroup> versioned,
List<? extends UpdateAction<CustomerGroup>> updateActions)
Creates a command to update a CustomerGroup selected by its ID using several update actions.
|
static CustomerGroupUpdateCommand |
of(Versioned<CustomerGroup> versioned,
UpdateAction<CustomerGroup> updateAction,
UpdateAction<CustomerGroup>... updateActions)
Creates a command to update a CustomerGroup selected by its ID using one update action.
|
static CustomerGroupUpdateCommand |
ofKey(String key,
Long version,
List<? extends UpdateAction<CustomerGroup>> updateActions)
Creates a command to update a CustomerGroup selected by its key using several update actions.
|
static CustomerGroupUpdateCommand |
ofKey(String key,
Long version,
UpdateAction<CustomerGroup> updateAction)
Creates a command to update a CustomerGroup 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 CustomerGroupUpdateCommand of(Versioned<CustomerGroup> versioned, List<? extends UpdateAction<CustomerGroup>> updateActions)
versioned
- the object to update (so directly a CustomerGroup
) or just the version/ID information of itupdateActions
- the updates@SafeVarargs static CustomerGroupUpdateCommand of(Versioned<CustomerGroup> versioned, UpdateAction<CustomerGroup> updateAction, UpdateAction<CustomerGroup>... updateActions)
versioned
- the object to update (so directly a CustomerGroup
) or just the version/ID information of itupdateAction
- the update to performupdateActions
- additional updates to performstatic CustomerGroupUpdateCommand ofKey(String key, Long version, List<? extends UpdateAction<CustomerGroup>> updateActions)
key
- the key of the CustomerGroup to update, see CustomerGroup.getKey()
version
- the current version of the CustomerGroup, see Resource.getVersion()
updateActions
- the updatesstatic CustomerGroupUpdateCommand ofKey(String key, Long version, UpdateAction<CustomerGroup> updateAction)
key
- the key of the CustomerGroup to update, see CustomerGroup.getKey()
version
- the current version of the CustomerGroup, see Resource.getVersion()
updateAction
- the update to perform