com.logicommerce.sdk.services.ShoppingListService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.services;
import java.util.List;
import com.logicommerce.sdk.models.Product;
/**
* ShoppingListService interface.
*
* @author Logicommerce
* @since 1.1.11
*/
public interface ShoppingListService extends PluginService {
/**
* add Element to default shoppingList .
*
* @param product a {@link com.logicommerce.sdk.models.Product} object
* @throws com.logicommerce.sdk.services.PluginServiceException if any.
*/
void upsert(List product) throws PluginServiceException;
}