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
Modifier and TypeMethodDescriptionRetrieve the attribute owner.Retrieve the Hibernate property mapping.
-
Method Details
-
getOwnerType
ManagedDomainType<X> getOwnerType()Retrieve the attribute owner.- Returns:
- The owner.
-
getPropertyMapping
Property getPropertyMapping()Retrieve the Hibernate property mapping.- Returns:
- The Hibernate property mapping.
-