1 //$Id: BatcherFactory.java,v 1.4 2005/05/09 22:12:48 steveebersole Exp $2 package org.hibernate.jdbc;3 4 5 /**6 * Factory for <tt>Batcher</tt> instances.7 * @author Gavin King8 */9 public interface BatcherFactory {10 public Batcher createBatcher(ConnectionManager connectionManager);11 }12