public class EnhancementContextWrapper extends Object implements EnhancementContext
Constructor and Description |
---|
EnhancementContextWrapper(EnhancementContext wrappedContext,
ClassLoader loadingClassloader) |
Modifier and Type | Method and Description |
---|---|
boolean |
doBiDirectionalAssociationManagement(UnloadedField field)
Should we manage association of bi-directional persistent attributes for this field?
|
boolean |
doDirtyCheckingInline(UnloadedClass classDescriptor)
Should we in-line dirty checking for persistent attributes for this class?
|
boolean |
doExtendedEnhancement(UnloadedClass classDescriptor)
Should we enhance field access to entities from this class?
|
ClassLoader |
getLoadingClassLoader()
Obtain access to the ClassLoader that can be used to load Class references.
|
boolean |
hasLazyLoadableAttributes(UnloadedClass classDescriptor)
Does the given class define any lazy loadable attributes?
|
boolean |
isCompositeClass(UnloadedClass classDescriptor)
Does the given class name represent an embeddable/component class?
|
boolean |
isEntityClass(UnloadedClass classDescriptor)
Does the given class descriptor represent a entity class?
|
boolean |
isLazyLoadable(UnloadedField field)
Determine if a field is lazy loadable.
|
boolean |
isMappedCollection(UnloadedField field) |
boolean |
isMappedSuperclassClass(UnloadedClass classDescriptor)
Does the given class name represent a MappedSuperclass class?
|
boolean |
isPersistentField(UnloadedField ctField)
Does the field represent persistent state? Persistent fields will be "enhanced".
|
UnloadedField[] |
order(UnloadedField[] persistentFields)
For fields which are persistent (according to
EnhancementContext.isPersistentField(org.hibernate.bytecode.enhance.spi.UnloadedField) ), determine the corresponding ordering
maintained within the Hibernate metamodel. |
public EnhancementContextWrapper(EnhancementContext wrappedContext, ClassLoader loadingClassloader)
public ClassLoader getLoadingClassLoader()
EnhancementContext
PersistenceUnitInfo.getNewTempClassLoader()
getLoadingClassLoader
in interface EnhancementContext
public boolean isEntityClass(UnloadedClass classDescriptor)
EnhancementContext
isEntityClass
in interface EnhancementContext
classDescriptor
- The descriptor of the class to check.true
if the class is an entity; false
otherwise.public boolean isCompositeClass(UnloadedClass classDescriptor)
EnhancementContext
isCompositeClass
in interface EnhancementContext
classDescriptor
- The descriptor of the class to check.true
if the class is an embeddable/component; false
otherwise.public boolean isMappedSuperclassClass(UnloadedClass classDescriptor)
EnhancementContext
isMappedSuperclassClass
in interface EnhancementContext
classDescriptor
- The descriptor of the class to check.true
if the class is a mapped super class; false
otherwise.public boolean doBiDirectionalAssociationManagement(UnloadedField field)
EnhancementContext
doBiDirectionalAssociationManagement
in interface EnhancementContext
field
- The field to check.true
indicates that the field is enhanced so that for bi-directional persistent fields
the association is managed, i.e. the associations are automatically set; false
indicates that
the management is handled by the user.public boolean doDirtyCheckingInline(UnloadedClass classDescriptor)
EnhancementContext
doDirtyCheckingInline
in interface EnhancementContext
classDescriptor
- The descriptor of the class to check.true
indicates that dirty checking should be in-lined within the entity; false
indicates it should not. In-lined is more easily serializable and probably more performant.public boolean doExtendedEnhancement(UnloadedClass classDescriptor)
EnhancementContext
doExtendedEnhancement
in interface EnhancementContext
classDescriptor
- The descriptor of the class to check.true
indicates that any direct access to fields of entities should be routed to the enhanced
getter / setter method.public boolean hasLazyLoadableAttributes(UnloadedClass classDescriptor)
EnhancementContext
hasLazyLoadableAttributes
in interface EnhancementContext
classDescriptor
- The class to checkpublic boolean isPersistentField(UnloadedField ctField)
EnhancementContext
isPersistentField
in interface EnhancementContext
ctField
- The field reference.true
if the field is ; false
otherwise.public UnloadedField[] order(UnloadedField[] persistentFields)
EnhancementContext
EnhancementContext.isPersistentField(org.hibernate.bytecode.enhance.spi.UnloadedField)
), determine the corresponding ordering
maintained within the Hibernate metamodel.order
in interface EnhancementContext
persistentFields
- The persistent field references.public boolean isLazyLoadable(UnloadedField field)
EnhancementContext
isLazyLoadable
in interface EnhancementContext
field
- The field to checktrue
if the field is lazy loadable; false
otherwise.public boolean isMappedCollection(UnloadedField field)
isMappedCollection
in interface EnhancementContext
field
- the field to checktrue
if the field is mappedCopyright © 2019 JBoss by Red Hat. All rights reserved.