Uses of Interface
org.hibernate.property.access.spi.PropertyAccessStrategy
-
Packages that use PropertyAccessStrategy Package Description org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.envers.configuration.internal.metadata org.hibernate.envers.configuration.internal.metadata.reader org.hibernate.envers.internal.entities org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.property.access.internal Contains various implementations ofPropertyAccessStrategy
.org.hibernate.property.access.spi An SPI abstracting how persistent attributes of an entity or embeddable type are accessed by Hibernate. -
-
Uses of PropertyAccessStrategy in org.hibernate.annotations
Methods in org.hibernate.annotations that return types with arguments of type PropertyAccessStrategy Modifier and Type Method Description Class<? extends PropertyAccessStrategy>
strategy()
A class implementingPropertyAccessStrategy
. -
Uses of PropertyAccessStrategy in org.hibernate.envers.configuration.internal.metadata
Methods in org.hibernate.envers.configuration.internal.metadata with parameters of type PropertyAccessStrategy Modifier and Type Method Description void
ValueMetadataGenerator. addValue(AttributeContainer attributeContainer, Value value, PropertyAccessStrategy propertyAccessStrategy, CompositeMapperBuilder currentMapper, String entityName, EntityMappingData mappingData, PropertyAuditingData propertyAuditingData, boolean insertable, boolean firstPass, boolean processModifiedFlags)
-
Uses of PropertyAccessStrategy in org.hibernate.envers.configuration.internal.metadata.reader
Methods in org.hibernate.envers.configuration.internal.metadata.reader that return PropertyAccessStrategy Modifier and Type Method Description PropertyAccessStrategy
PropertyAuditingData. getPropertyAccessStrategy()
Methods in org.hibernate.envers.configuration.internal.metadata.reader with parameters of type PropertyAccessStrategy Modifier and Type Method Description void
PropertyAuditingData. setPropertyAccessStrategy(PropertyAccessStrategy propertyAccessStrategy)
-
Uses of PropertyAccessStrategy in org.hibernate.envers.internal.entities
Methods in org.hibernate.envers.internal.entities that return PropertyAccessStrategy Modifier and Type Method Description PropertyAccessStrategy
PropertyData. getPropertyAccessStrategy()
Constructors in org.hibernate.envers.internal.entities with parameters of type PropertyAccessStrategy Constructor Description PropertyData(String name, String beanName, String accessType, boolean usingModifiedFlag, String modifiedFlagName, boolean synthetic, Type propertyType, Class<?> virtualReturnClass, PropertyAccessStrategy propertyAccessStrategy)
PropertyData(String name, String beanName, String accessType, boolean usingModifiedFlag, String modifiedFlagName, boolean synthetic, Type propertyType, PropertyAccessStrategy propertyAccessStrategy)
-
Uses of PropertyAccessStrategy in org.hibernate.mapping
Methods in org.hibernate.mapping that return PropertyAccessStrategy Modifier and Type Method Description PropertyAccessStrategy
Backref. getPropertyAccessStrategy(Class clazz)
PropertyAccessStrategy
IndexBackref. getPropertyAccessStrategy(Class clazz)
PropertyAccessStrategy
Property. getPropertyAccessStrategy()
PropertyAccessStrategy
Property. getPropertyAccessStrategy(Class clazz)
Methods in org.hibernate.mapping with parameters of type PropertyAccessStrategy Modifier and Type Method Description void
Property. setPropertyAccessStrategy(PropertyAccessStrategy propertyAccessStrategy)
-
Uses of PropertyAccessStrategy in org.hibernate.property.access.internal
Classes in org.hibernate.property.access.internal that implement PropertyAccessStrategy Modifier and Type Class Description class
PropertyAccessStrategyBackRefImpl
class
PropertyAccessStrategyBasicImpl
Defines a strategy for accessing property values via a get/set pair, which may be nonpublic.class
PropertyAccessStrategyChainedImpl
class
PropertyAccessStrategyCompositeUserTypeImpl
Defines a strategy for accessing property values via a CompositeUserType.class
PropertyAccessStrategyEmbeddedImpl
APropertyAccessStrategy
that deals with non-aggregated composites.class
PropertyAccessStrategyEnhancedImpl
Defines a strategy for accessing property values via a get/set pair, which may be nonpublic.class
PropertyAccessStrategyFieldImpl
Defines a strategy for accessing property values directly via a field, which may be non-public.class
PropertyAccessStrategyIndexBackRefImpl
class
PropertyAccessStrategyMapImpl
class
PropertyAccessStrategyMixedImpl
A PropertyAccessStrategy that selects between available getter/setter method and/or field.class
PropertyAccessStrategyNoopImpl
Constructors in org.hibernate.property.access.internal with parameters of type PropertyAccessStrategy Constructor Description PropertyAccessEnhancedImpl(PropertyAccessStrategy strategy, Class<?> containerJavaType, String propertyName, AccessType getterAccessType)
PropertyAccessMixedImpl(PropertyAccessStrategy strategy, Class<?> containerJavaType, String propertyName)
PropertyAccessStrategyChainedImpl(PropertyAccessStrategy... chain)
-
Uses of PropertyAccessStrategy in org.hibernate.property.access.spi
Methods in org.hibernate.property.access.spi that return PropertyAccessStrategy Modifier and Type Method Description PropertyAccessStrategy
PropertyAccess. getPropertyAccessStrategy()
Access to thePropertyAccessStrategy
that created this instance.PropertyAccessStrategy
BuiltInPropertyAccessStrategies. getStrategy()
PropertyAccessStrategy
PropertyAccessStrategyResolver. resolvePropertyAccessStrategy(Class<?> containerClass, String explicitAccessStrategyName, RepresentationMode representationMode)
Resolve the PropertyAccessStrategy to use
-