Uses of Interface
org.hibernate.property.access.spi.PropertyAccessStrategy
-
Packages that use PropertyAccessStrategy Package Description org.hibernate.annotations Package containing all Hibernate's specific annotations.org.hibernate.cfg.annotations org.hibernate.envers.configuration.internal.metadata org.hibernate.envers.configuration.internal.metadata.reader org.hibernate.envers.internal.entities org.hibernate.mapping org.hibernate.property.access.internal org.hibernate.property.access.spi Defines strategies for accessing the persistent properties of an entity or composite. -
-
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.cfg.annotations
Methods in org.hibernate.cfg.annotations with parameters of type PropertyAccessStrategy Modifier and Type Method Description void
PropertyBinder. setPropertyAccessStrategy(PropertyAccessStrategy propertyAccessStrategy)
-
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
Yeah, right, so....Constructors in org.hibernate.property.access.internal with parameters of type PropertyAccessStrategy Constructor Description PropertyAccessEnhancedImpl(PropertyAccessStrategy strategy, Class<?> containerJavaType, String propertyName)
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 the PropertyAccessStrategy that created this PropertyAccessPropertyAccessStrategy
BuiltInPropertyAccessStrategies. getStrategy()
PropertyAccessStrategy
PropertyAccessStrategyResolver. resolvePropertyAccessStrategy(Class<?> containerClass, String explicitAccessStrategyName, RepresentationMode representationMode)
Resolve the PropertyAccessStrategy to use
-