/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2011, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.metamodel.binding;

import org.hibernate.metamodel.domain.AttributeContainer;
import org.hibernate.metamodel.domain.PluralAttribute;
import org.hibernate.metamodel.domain.SingularAttribute;
import org.hibernate.metamodel.source.MetaAttributeContext;

Common contract for EntityBinding and ComponentAttributeBinding in so far as they are both containers for AttributeBinding descriptors
Author:Steve Ebersole
/** * Common contract for {@link EntityBinding} and {@link ComponentAttributeBinding} in so far as they are both * containers for {@link AttributeBinding} descriptors * * @author Steve Ebersole */
public interface AttributeBindingContainer {
Obtain the path base of this container. Intended to help uniquely identify each attribute binding.
Returns:The path base for this container.
/** * Obtain the path base of this container. Intended to help uniquely identify each attribute binding. * * @return The path base for this container. */
public String getPathBase();
Obtain the underlying domain attribute container.
Returns:The attribute container
/** * Obtain the underlying domain attribute container. * * @return The attribute container */
public AttributeContainer getAttributeContainer();
Obtain all attribute bindings
Returns:All attribute bindings
/** * Obtain all attribute bindings * * @return All attribute bindings */
public Iterable<AttributeBinding> attributeBindings();
Locate a specific attribute binding, by its local name.
Params:
  • name – The name of the attribute, local to this container.
Returns:The attribute binding.
/** * Locate a specific attribute binding, by its local name. * * @param name The name of the attribute, local to this container. * * @return The attribute binding. */
public AttributeBinding locateAttributeBinding(String name);
Factory method for basic attribute bindings.
Params:
  • attribute – The attribute for which to make a binding.
Returns:The attribute binding instance.
/** * Factory method for basic attribute bindings. * * @param attribute The attribute for which to make a binding. * * @return The attribute binding instance. */
public BasicAttributeBinding makeBasicAttributeBinding(SingularAttribute attribute);
Factory method for component attribute bindings.
Params:
  • attribute – The attribute for which to make a binding.
Returns:The attribute binding instance.
/** * Factory method for component attribute bindings. * * @param attribute The attribute for which to make a binding. * * @return The attribute binding instance. */
public ComponentAttributeBinding makeComponentAttributeBinding(SingularAttribute attribute);
Factory method for many-to-one attribute bindings.
Params:
  • attribute – The attribute for which to make a binding.
Returns:The attribute binding instance.
/** * Factory method for many-to-one attribute bindings. * * @param attribute The attribute for which to make a binding. * * @return The attribute binding instance. */
public ManyToOneAttributeBinding makeManyToOneAttributeBinding(SingularAttribute attribute);
Factory method for bag attribute bindings.
Params:
  • attribute – The attribute for which to make a binding.
  • nature – The nature of the collection elements.
Returns:The attribute binding instance.
/** * Factory method for bag attribute bindings. * * @param attribute The attribute for which to make a binding. * @param nature The nature of the collection elements. * * @return The attribute binding instance. */
public BagBinding makeBagAttributeBinding(PluralAttribute attribute, CollectionElementNature nature);
Factory method for bag attribute bindings.
Params:
  • attribute – The attribute for which to make a binding.
  • nature – The nature of the collection elements.
Returns:The attribute binding instance.
/** * Factory method for bag attribute bindings. * * @param attribute The attribute for which to make a binding. * @param nature The nature of the collection elements. * * @return The attribute binding instance. */
public SetBinding makeSetAttributeBinding(PluralAttribute attribute, CollectionElementNature nature);
Seeks out the entity binding that is the root of this component path.
Returns:The entity binding
/** * Seeks out the entity binding that is the root of this component path. * * @return The entity binding */
public EntityBinding seekEntityBinding();
Obtain the Class reference for this attribute container. Generally this is used to perform reflection on the attributes.
Returns:The Class reference
/** * Obtain the {@link Class} reference for this attribute container. Generally this is used to perform reflection * on the attributes. * * @return The {@link Class} reference */
public Class<?> getClassReference();
Obtain the meta-attribute context for this container.
Returns:The meta-attribute context.
/** * Obtain the meta-attribute context for this container. * * @return The meta-attribute context. */
public MetaAttributeContext getMetaAttributeContext(); }