/*
 * 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.mapping;

import java.util.Map;
import java.util.Objects;

import org.hibernate.MappingException;
import org.hibernate.boot.spi.MetadataBuildingContext;
import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.type.MetaType;
import org.hibernate.type.Type;

A Hibernate "any" type (ie. polymorphic association to one-of-several tables).
Author:Gavin King
/** * A Hibernate "any" type (ie. polymorphic association to * one-of-several tables). * @author Gavin King */
public class Any extends SimpleValue { private String identifierTypeName; private String metaTypeName = "string"; private Map metaValues;
Deprecated:Use Any(MetadataBuildingContext, Table) instead.
/** * @deprecated Use {@link Any#Any(MetadataBuildingContext, Table)} instead. */
@Deprecated public Any(MetadataImplementor metadata, Table table) { super( metadata, table ); } public Any(MetadataBuildingContext buildingContext, Table table) { super( buildingContext, table ); } public String getIdentifierType() { return identifierTypeName; } public void setIdentifierType(String identifierType) { this.identifierTypeName = identifierType; } public Type getType() throws MappingException { final Type metaType = getMetadata().getTypeResolver().heuristicType( metaTypeName ); return getMetadata().getTypeResolver().getTypeFactory().any( metaValues == null ? metaType : new MetaType( metaValues, metaType ), getMetadata().getTypeResolver().heuristicType( identifierTypeName ) ); } public void setTypeByReflection(String propertyClass, String propertyName) {} public String getMetaType() { return metaTypeName; } public void setMetaType(String type) { metaTypeName = type; } public Map getMetaValues() { return metaValues; } public void setMetaValues(Map metaValues) { this.metaValues = metaValues; } public void setTypeUsingReflection(String className, String propertyName) throws MappingException { } public Object accept(ValueVisitor visitor) { return visitor.accept(this); } @Override public boolean isSame(SimpleValue other) { return other instanceof Any && isSame( (Any) other ); } public boolean isSame(Any other) { return super.isSame( other ) && Objects.equals( identifierTypeName, other.identifierTypeName ) && Objects.equals( metaTypeName, other.metaTypeName ) && Objects.equals( metaValues, other.metaValues ); } }