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