Package | Description |
---|---|
io.sphere.sdk.apiclient.commands | |
io.sphere.sdk.cartdiscounts.commands |
Provides types to change the state of cart discounts.
|
io.sphere.sdk.carts.commands |
Provides types to change the state of carts.
|
io.sphere.sdk.categories.commands |
Provides types to change the state of categories.
|
io.sphere.sdk.channels.commands |
Provides types to change the state of channels.
|
io.sphere.sdk.commands |
This package provide tools to change objects in Composable Commerce.
|
io.sphere.sdk.customergroups.commands |
Provides types to change the state of customer groups.
|
io.sphere.sdk.customers.commands |
Provides types to change the state of customers.
|
io.sphere.sdk.customobjects.commands |
Provides types to change the state of custom objects.
|
io.sphere.sdk.discountcodes.commands |
Provides types to change the state of discount codes.
|
io.sphere.sdk.extensions.commands | |
io.sphere.sdk.inventory.commands |
Provides types to change the state of inventory entries.
|
io.sphere.sdk.orderedits.commands | |
io.sphere.sdk.orders.commands |
Provides types to change the state of orders.
|
io.sphere.sdk.payments.commands |
Provides types to change the state of payments.
|
io.sphere.sdk.productdiscounts.commands |
Provides types to change the state of product discounts.
|
io.sphere.sdk.products.commands |
Provides types to change the state of products.
|
io.sphere.sdk.productselections.commands |
Provides types to change the state of product selection.
|
io.sphere.sdk.producttypes.commands |
Provides types to change the state of product types.
|
io.sphere.sdk.reviews.commands |
Provides types to change the state of reviews.
|
io.sphere.sdk.shippingmethods.commands |
Provides types to change the state of shipping methods.
|
io.sphere.sdk.shoppinglists.commands |
Provides types to change the state of shopping list methods.
|
io.sphere.sdk.states.commands |
Provides types to change the state of states.
|
io.sphere.sdk.stores.commands | |
io.sphere.sdk.subscriptions.commands |
Provides types to change the state of subscription methods.
|
io.sphere.sdk.taxcategories.commands |
Provides types to change the state of tax categories.
|
io.sphere.sdk.types.commands |
Provides types to change the state of types.
|
io.sphere.sdk.zones.commands |
Provides types to change the state of zones.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ApiClientDeleteCommand |
Modifier and Type | Interface and Description |
---|---|
interface |
CartDiscountDeleteCommand
Deletes a
CartDiscount . |
Modifier and Type | Interface and Description |
---|---|
interface |
CartDeleteCommand
Deletes a cart
|
interface |
CartInStoreDeleteCommand |
Modifier and Type | Interface and Description |
---|---|
interface |
CategoryDeleteCommand
Deletes a category.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ChannelDeleteCommand
Deletes a channel.
|
Modifier and Type | Class and Description |
---|---|
class |
MetaModelByIdDeleteCommandImpl<T extends ResourceView<T,T>,C,E>
Internal base class to implement commands which delete a resource by ID in Composable Commerce.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CustomerGroupDeleteCommand
Deletes a customer group.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CustomerDeleteCommand
Deletes a customer.
|
interface |
CustomerInStoreDeleteCommand |
Modifier and Type | Interface and Description |
---|---|
interface |
CustomObjectDeleteCommand<T>
Deletes a custom object in Composable Commerce.
|
Modifier and Type | Method and Description |
---|---|
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(CustomObject<T> customObject,
Class<T> valueClass)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(CustomObject<T> customObject,
Class<T> valueClass,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(CustomObject<T> customObject,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(CustomObject<T> customObject,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String id,
Long version,
Class<T> valueClass)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in
valueClass specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String id,
Long version,
Class<T> valueClass,
boolean eraseData)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in
valueClass specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String id,
Long version,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String id,
Long version,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference,
boolean eraseData)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String container,
String key,
Class<T> valueClass)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String container,
String key,
Class<T> valueClass,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String container,
String key,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static <T> DeleteCommand<CustomObject<T>> |
CustomObjectDeleteCommand.of(String container,
String key,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in
valueTypeReference specified value type. |
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(CustomObject<?> customObject)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with a JsonNode value type.
|
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(CustomObject<?> customObject,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with a JsonNode value type.
|
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(String id,
Long version)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with a JsonNode value type.
|
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(String id,
Long version,
boolean eraseData)
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with a JsonNode value type.
|
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(String container,
String key)
Deletes a custom object without optimistic concurrency control and returns the old custom object with a JsonNode value type.
|
static DeleteCommand<CustomObject<com.fasterxml.jackson.databind.JsonNode>> |
CustomObjectDeleteCommand.ofJsonNode(String container,
String key,
boolean eraseData)
Deletes a custom object without optimistic concurrency control and returns the old custom object with a JsonNode value type.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DiscountCodeDeleteCommand
Command object to delete a
DiscountCode . |
Modifier and Type | Interface and Description |
---|---|
interface |
ExtensionDeleteCommand
Deletes an extension.
|
Modifier and Type | Interface and Description |
---|---|
interface |
InventoryEntryDeleteCommand
Command object to delete a
InventoryEntry . |
Modifier and Type | Interface and Description |
---|---|
interface |
OrderEditDeleteCommand
Command object to delete a
OrderEdit . |
Modifier and Type | Interface and Description |
---|---|
interface |
OrderDeleteCommand
Command object to delete a
Order . |
interface |
OrderInStoreDeleteByIdCommand |
interface |
OrderInStoreDeleteByOrderNumberCommand |
Modifier and Type | Interface and Description |
---|---|
interface |
PaymentDeleteCommand
Command object to delete a
Payment . |
Modifier and Type | Interface and Description |
---|---|
interface |
ProductDiscountDeleteCommand
Command object to delete a
ProductDiscount . |
Modifier and Type | Interface and Description |
---|---|
interface |
ProductDeleteCommand
Command object to delete a
Product . |
Modifier and Type | Interface and Description |
---|---|
interface |
ProductSelectionDeleteCommand
Deletes a cart
|
Modifier and Type | Interface and Description |
---|---|
interface |
ProductTypeDeleteCommand
Deletes a product type.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ReviewDeleteCommand
Command object to delete a
Review . |
Modifier and Type | Interface and Description |
---|---|
interface |
ShippingMethodDeleteCommand
Command object to delete a
ShippingMethod . |
Modifier and Type | Interface and Description |
---|---|
interface |
ShoppingListDeleteCommand
Deletes a shopping list.
|
interface |
ShoppingListInStoreDeleteCommand |
Modifier and Type | Interface and Description |
---|---|
interface |
StateDeleteCommand
Deletes a state.
|
Modifier and Type | Interface and Description |
---|---|
interface |
StoreDeleteCommand
Command object to delete a
Store . |
Modifier and Type | Interface and Description |
---|---|
interface |
SubscriptionDeleteCommand
Deletes a subscription.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TaxCategoryDeleteCommand
Deletes a tax category.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TypeDeleteCommand
Command object to delete a
Type . |
Modifier and Type | Interface and Description |
---|---|
interface |
ZoneDeleteCommand
Command object to delete a
Zone . |