Package org.hibernate.metamodel.internal
Interface AttributeContext<X>
-
- Type Parameters:
X- The owner type.
public interface AttributeContext<X>Bundle's a Hibernate property mapping together with the JPA metamodel information of the attribute owner.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedDomainType<X>getOwnerType()Retrieve the attribute owner.PropertygetPropertyMapping()Retrieve the Hibernate property mapping.
-
-
-
Method Detail
-
getOwnerType
ManagedDomainType<X> getOwnerType()
Retrieve the attribute owner.- Returns:
- The owner.
-
getPropertyMapping
Property getPropertyMapping()
Retrieve the Hibernate property mapping.- Returns:
- The Hibernate property mapping.
-
-