1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.jboss_deployment_descriptor.bean;8 9 import java.util.HashMap ;10 import javax.ejb.Remove ;11 12 public interface ShoppingCart13 {14 void buy(String product, int quantity);15 16 void priceCheck(String product);17 18 HashMap <String , Integer > getCartContents();19 20 void checkout();21 }22