1 package de.orangecafe.amazonrcp.service;
2
3 import com.amazon.webservices.awsecommerceservice._2007_04_04.*;
4
5 import java.util.List;
6
7
8
9
10 public interface IAmazonService {
11 public Items search(ItemSearchRequest itemSearchRequest) throws ServiceException;
12 public Cart createCart() throws ServiceException;
13 public Cart getCart(String cartId, String hmac) throws ServiceException;
14 public Cart modifyCart(Cart cart) throws ServiceException;
15 public void addToCart(String cartId, String hmac, List<Item> items) throws ServiceException;
16
17 public void clearCart(String cartId, String hmac) throws ServiceException;
18 }