package org.jboss.ejb.plugins.cmp.jdbc2;
import org.jboss.ejb.plugins.cmp.jdbc2.schema.Schema;
import org.jboss.ejb.GenericEntityObjectFactory;
import javax.ejb.FinderException;
import java.util.Collection;
public interface QueryCommand
{
public JDBCStoreManager2 getStoreManager();
public Collection fetchCollection(Schema schema, GenericEntityObjectFactory factory, Object[] args)
throws FinderException;
public Object fetchOne(Schema schema, GenericEntityObjectFactory factory, Object[] args)
throws FinderException;
}