public interface PersistenceUnitUtil extends PersistenceUtil
The methods of this interface should only be invoked on entity instances obtained from or managed by entity managers for this persistence unit or on new entity instances.
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getIdentifier(java.lang.Object entity)
Return the id of the entity.
|
boolean |
isLoaded(java.lang.Object entity)
Determine the load state of an entity belonging to the
persistence unit.
|
boolean |
isLoaded(java.lang.Object entity,
java.lang.String attributeName)
Determine the load state of a given persistent attribute
of an entity belonging to the persistence unit.
|
boolean isLoaded(java.lang.Object entity, java.lang.String attributeName)
isLoaded
in interface PersistenceUtil
entity
- entity instance containing the attributeattributeName
- name of attribute whose load state is
to be determinedboolean isLoaded(java.lang.Object entity)
FetchType.EAGER
has been specified have been
loaded.
The isLoaded(Object, String)
method
should be used to determine the load state of an attribute.
Not doing so might lead to unintended loading of state.
isLoaded
in interface PersistenceUtil
entity
- entity instance whose load state is to be determinedjava.lang.Object getIdentifier(java.lang.Object entity)
entity
- entity instancejava.lang.IllegalArgumentException
- if the object is found not
to be an entity