/* See LICENSE for licensing and NOTICE for copyright. */ package org.ldaptive.pool; /** * Interface for objects that manage an instance of pooled connection factory. * * @author Middleware Services */ public interface PooledConnectionFactoryManager { /** * Returns the connection factory. * * @return connection factory */ PooledConnectionFactory getConnectionFactory(); /** * Sets the connection factory. * * @param cf connection factory */ void setConnectionFactory(PooledConnectionFactory cf); }