1    package com.instantbank.collections.collectionsQueuing.ejb;
2    
3    import java.rmi.RemoteException;
4    import javax.ejb.CreateException;
5    import javax.ejb.EJBHome;
6    
7    public interface CollectionsQueuingServicesHome extends EJBHome {
8      public CollectionsQueuingServices create() throws RemoteException, CreateException;
9    }
10