package examples.stateful.interfaces; import javax.ejb.Remote; @Remote public interface Cart { public void addItem(); public int getItems(); public void remove1() throws Exception; public void remove2() throws Exception; }