01: package cart; 02: 03: import javax.ejb.EJBLocalObject; 04: 05: /** 06: * This is the local interface for Cart enterprise bean. 07: */ 08: public interface CartLocal extends EJBLocalObject, CartLocalBusiness { 09: 10: }