Package org.hibernate.engine.spi
Class AssociationKey
- java.lang.Object
-
- org.hibernate.engine.spi.AssociationKey
-
- All Implemented Interfaces:
java.io.Serializable
public final class AssociationKey extends java.lang.Object implements java.io.SerializableIdentifies a named association belonging to a particular entity instance. Used to record the fact that an association is null during loading.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssociationKey(EntityKey ownerKey, java.lang.String propertyName)Constructs an AssociationKey
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)inthashCode()
-
-
-
Constructor Detail
-
AssociationKey
public AssociationKey(EntityKey ownerKey, java.lang.String propertyName)
Constructs an AssociationKey- Parameters:
ownerKey- The EntityKey of the association ownerpropertyName- The name of the property on the owner which defines the association
-
-