org.hibernate.cfg.PropertyHolderBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core-jakarta Show documentation
Show all versions of hibernate-core-jakarta Show documentation
Hibernate O/RM implementation of the Jakarta Persistence specification
/*
* 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.cfg;
import java.util.Map;
import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XProperty;
import org.hibernate.boot.spi.MetadataBuildingContext;
import org.hibernate.cfg.annotations.EntityBinder;
import org.hibernate.mapping.Collection;
import org.hibernate.mapping.Component;
import org.hibernate.mapping.Join;
import org.hibernate.mapping.PersistentClass;
/**
* This factory is here to build a PropertyHolder and prevent .mapping interface adding
*
* @author Emmanuel Bernard
*/
public final class PropertyHolderBuilder {
private PropertyHolderBuilder() {
}
public static PropertyHolder buildPropertyHolder(
XClass clazzToProcess,
PersistentClass persistentClass,
EntityBinder entityBinder,
MetadataBuildingContext context,
Map inheritanceStatePerClass) {
return new ClassPropertyHolder(
persistentClass,
clazzToProcess,
entityBinder,
context,
inheritanceStatePerClass
);
}
/**
* build a component property holder
*
* @param component component to wrap
* @param path component path
* @param context
* @return PropertyHolder
*/
public static PropertyHolder buildPropertyHolder(
Component component,
String path,
PropertyData inferredData,
PropertyHolder parent,
MetadataBuildingContext context) {
return new ComponentPropertyHolder( component, path, inferredData, parent, context );
}
/**
* build a property holder on top of a collection
*/
public static CollectionPropertyHolder buildPropertyHolder(
Collection collection,
String path,
XClass clazzToProcess,
XProperty property,
PropertyHolder parentPropertyHolder,
MetadataBuildingContext context) {
return new CollectionPropertyHolder(
collection,
path,
clazzToProcess,
property,
parentPropertyHolder,
context
);
}
/**
* must only be used on second level phases ( has to be settled already)
*/
public static PropertyHolder buildPropertyHolder(
PersistentClass persistentClass,
Map joins,
MetadataBuildingContext context,
Map inheritanceStatePerClass) {
return new ClassPropertyHolder( persistentClass, null, joins, context, inheritanceStatePerClass );
}
}