io.sphere.sdk.reviews.commands.ReviewDeleteCommand Maven / Gradle / Ivy
The newest version!
/*
This class has been generated by class io.sphere.sdk.annotations.processors.DeleteCommandEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasDeleteCommand.
in the source class io.sphere.sdk.reviews.Review.
To render this class the handlebars template 'commands/deleteCommandInterface.hbs' has been used.
*/
package io.sphere.sdk.reviews.commands;
import io.sphere.sdk.commands.DeleteCommand;
import io.sphere.sdk.expansion.MetaModelReferenceExpansionDsl;
import io.sphere.sdk.models.Versioned;
import io.sphere.sdk.reviews.Review;
import io.sphere.sdk.reviews.expansion.ReviewExpansionModel;
import static io.sphere.sdk.client.SphereRequestUtils.urlEncode;
/**
Command object to delete a {@link Review}.
@see Review
*/
public interface ReviewDeleteCommand extends MetaModelReferenceExpansionDsl>, DeleteCommand {
/**
Creates a command object to delete a {@link Review} by ID.
@param versioned the object to delete (so directly a {@link Review}) or just the version/ID information of it
@return delete command
*/
static ReviewDeleteCommand of(final Versioned versioned) {
return new ReviewDeleteCommandImpl(versioned,false);
}
/**
Creates a command object to delete a {@link Review} by ID.
@param versioned the object to delete (so directly a {@link Review}) or just the version/ID information of it
@param eraseData If set to {@literal true}, Composable Commerce guarantees that all personal data related to the particular object, including invisible data, is erased, in compliance with the GDPR.
@return delete command
*/
static ReviewDeleteCommand of(final Versioned versioned,final boolean eraseData) {
return new ReviewDeleteCommandImpl(versioned,eraseData);
}
/**
Creates a command object to delete a {@link Review} by its key.
@param key the key of the Review to delete, see {@link Review#getKey()}
@param version `the current version of the Review, see {@link Review#getVersion()}
@return delete command
*/
static ReviewDeleteCommand ofKey(final String key, final Long version) {
final Versioned versioned = Versioned.of("key=" + urlEncode(key), version);//hack for simple reuse
return of(versioned);
}
/**
Creates a command object to delete a {@link Review} by its key.
@param key the key of the Review to delete, see {@link Review#getKey()}
@param version the current version of the Review, see {@link Review#getVersion()}
@param eraseData If set to {@literal true}, Composable Commerce guarantees that all personal data related to the particular object, including invisible data, is erased, in compliance with the GDPR.
@return delete command
*/
static ReviewDeleteCommand ofKey(final String key, final Long version, final boolean eraseData) {
final Versioned versioned = Versioned.of("key=" + urlEncode(key), version);//hack for simple reuse
return of(versioned, eraseData);
}
/**
Creates a command object to delete a {@link Review} by its id.
@param id the id of the Review to delete, see {@link Review#getId()}
@param version `the current version of the Review, see {@link Review#getVersion()}
@return delete command
*/
static ReviewDeleteCommand ofId(final String id, final Long version) {
final Versioned versioned = Versioned.of("id=" + urlEncode(id), version);//hack for simple reuse
return of(versioned);
}
/**
Creates a command object to delete a {@link Review} by its id.
@param id the id of the Review to delete, see {@link Review#getId()}
@param version the current version of the Review, see {@link Review#getVersion()}
@param eraseData If set to {@literal true}, Composable Commerce guarantees that all personal data related to the particular object, including invisible data, is erased, in compliance with the GDPR.
@return delete command
*/
static ReviewDeleteCommand ofId(final String id, final Long version, final boolean eraseData) {
final Versioned versioned = Versioned.of("id=" + urlEncode(id), version);//hack for simple reuse
return of(versioned, eraseData);
}
}