All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.persister.spi.PersisterClassResolver Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * 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:

    *
  1. the persister class defined explicitly via annotation or XML
  2. *
  3. the persister class returned by the installed {@link PersisterClassResolver}
  4. *
  5. the default provider as chosen by Hibernate Core (best choice most of the time)
  6. *
* * @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 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 getCollectionPersisterClass(Collection metadata); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy