org.hibernate.EntityNameResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-hibernate-core Show documentation
Show all versions of beangle-hibernate-core Show documentation
Hibernate Orm Core Shade,Support Scala Collection
/*
* 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;
/**
* An object capable of determining the entity name for a given entity instance.
*
* A single Java class may be mapped as an entity multiple times, with each mapping
* distinguished by a distinct entity name. This is not currently possible
* using annotations, but it may be achieved using XML-based mappings. If a class
* is mapped multiple times, Hibernate needs a way to determine which entity is
* represented by a given instance of the class. There are two ways to provide this
* information:
*
* - by passing the entity name explicitly to methods of {@link Session}, for
* example, by calling {@link Session#persist(String, Object)}, but this can
* be verbose and lacking in typesafety, or
*
- by having the entity instance itself carry around the information, for
* example, by giving it a field holding the entity name, and supplying an
* {@code EntityNameResolver} which is capable of extracting the information
* from the entity instance.
*
*
* @see org.hibernate.boot.SessionFactoryBuilder#addEntityNameResolver(EntityNameResolver...)
* @see org.hibernate.cfg.Configuration#addEntityNameResolver(EntityNameResolver)
*
* @author Steve Ebersole
*/
@FunctionalInterface
public interface EntityNameResolver {
/**
* Given an entity instance, determine its entity name.
*
* @param entity The entity instance.
*
* @return The corresponding entity name, or {@code null} if this implementation
* does not know how to perform resolution for the given entity instance.
*/
String resolveEntityName(Object entity);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy