1 /*2 * Created on Jan 17, 20053 */4 package com.openedit.store;5 6 /**7 * @author dbrown8 *9 */10 public interface OrderGenerator11 {12 public Order createNewOrder(Store inStore, Cart inCart) throws StoreException;13 14 public String nextOrderNumber( Store inStore ) throws StoreException;15 }16