/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.persister.spi;
import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.engine.spi.SessionFactoryImplementor;
"Parameter object" providing access to additional information that may be needed
in the creation of the persisters.
Author: Steve Ebersole
/**
* "Parameter object" providing access to additional information that may be needed
* in the creation of the persisters.
*
* @author Steve Ebersole
*/
public interface PersisterCreationContext {
SessionFactoryImplementor getSessionFactory();
MetadataImplementor getMetadata();
}