org.hibernate.persister.spi.PersisterClassResolver Maven / Gradle / Ivy
/*
* 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 .
*/
package org.hibernate.persister.spi;
import org.hibernate.mapping.Collection;
import org.hibernate.mapping.PersistentClass;
import org.hibernate.persister.collection.CollectionPersister;
import org.hibernate.persister.entity.EntityPersister;
import org.hibernate.service.Service;
/**
* Given an entity or collection mapping, resolve the appropriate persister class to use.
*
* The persister class is chosen according to the following rules:
* - the persister class defined explicitly via annotation or XML
* - the persister class returned by the installed {@link PersisterClassResolver}
* - the default provider as chosen by Hibernate Core (best choice most of the time)
*
*
* @author Emmanuel Bernard
* @author Steve Ebersole
*/
public interface PersisterClassResolver extends Service {
/**
* Returns the entity persister class for a given entityName or null
* if the entity persister class should be the default.
*
* @param metadata The entity metadata
*
* @return The entity persister class to use
*/
Class extends EntityPersister> getEntityPersisterClass(PersistentClass metadata);
/**
* Returns the collection persister class for a given collection role or null
* if the collection persister class should be the default.
*
* @param metadata The collection metadata
*
* @return The collection persister class to use
*/
Class extends CollectionPersister> getCollectionPersisterClass(Collection metadata);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy