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 voidValueMetadataGenerator. 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 PropertyAccessStrategyPropertyAuditingData. getPropertyAccessStrategy()Methods in org.hibernate.envers.configuration.internal.metadata.reader with parameters of type PropertyAccessStrategy Modifier and Type Method Description voidPropertyAuditingData. 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 PropertyAccessStrategyPropertyData. 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 PropertyAccessStrategyBackref. getPropertyAccessStrategy(Class clazz)PropertyAccessStrategyIndexBackref. getPropertyAccessStrategy(Class clazz)PropertyAccessStrategyProperty. getPropertyAccessStrategy()PropertyAccessStrategyProperty. getPropertyAccessStrategy(Class clazz)Methods in org.hibernate.mapping with parameters of type PropertyAccessStrategy Modifier and Type Method Description voidProperty. 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 classPropertyAccessStrategyBackRefImplclassPropertyAccessStrategyBasicImplDefines a strategy for accessing property values via a get/set pair, which may be nonpublic.classPropertyAccessStrategyChainedImplclassPropertyAccessStrategyCompositeUserTypeImplDefines a strategy for accessing property values via a CompositeUserType.classPropertyAccessStrategyEmbeddedImplAPropertyAccessStrategythat deals with non-aggregated composites.classPropertyAccessStrategyEnhancedImplDefines a strategy for accessing property values via a get/set pair, which may be nonpublic.classPropertyAccessStrategyFieldImplDefines a strategy for accessing property values directly via a field, which may be non-public.classPropertyAccessStrategyIndexBackRefImplclassPropertyAccessStrategyMapImplclassPropertyAccessStrategyMixedImplA PropertyAccessStrategy that selects between available getter/setter method and/or field.classPropertyAccessStrategyNoopImplConstructors 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 PropertyAccessStrategyPropertyAccess. getPropertyAccessStrategy()Access to thePropertyAccessStrategythat created this instance.PropertyAccessStrategyBuiltInPropertyAccessStrategies. getStrategy()PropertyAccessStrategyPropertyAccessStrategyResolver. resolvePropertyAccessStrategy(Class<?> containerClass, String explicitAccessStrategyName, RepresentationMode representationMode)Resolve the PropertyAccessStrategy to use
-