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

org.hibernate.persister.walking.spi.AssociationAttributeDefinition Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
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.walking.spi;

import org.hibernate.engine.FetchStrategy;
import org.hibernate.engine.spi.CascadeStyle;
import org.hibernate.engine.spi.LoadQueryInfluencers;
import org.hibernate.loader.PropertyPath;
import org.hibernate.persister.spi.HydratedCompoundValueHandler;
import org.hibernate.type.AssociationType;

/**
 * @author Steve Ebersole
 */
public interface AssociationAttributeDefinition extends AttributeDefinition {
	@Override
	AssociationType getType();

	public AssociationKey getAssociationKey();

	public static enum AssociationNature {
		ANY,
		ENTITY,
		COLLECTION
	}

	public AssociationNature getAssociationNature();

	public EntityDefinition toEntityDefinition();

	public CollectionDefinition toCollectionDefinition();

	public AnyMappingDefinition toAnyDefinition();

	public FetchStrategy determineFetchPlan(LoadQueryInfluencers loadQueryInfluencers, PropertyPath propertyPath);

	public CascadeStyle determineCascadeStyle();

	public HydratedCompoundValueHandler getHydratedCompoundValueExtractor();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy