Class PropertyAccessStrategyBasicImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessStrategyBasicImpl
-
- All Implemented Interfaces:
PropertyAccessStrategy
public class PropertyAccessStrategyBasicImpl extends Object implements PropertyAccessStrategy
Defines a strategy for accessing property values via a get/set pair, which may be nonpublic. This is the default (and recommended) strategy.
-
-
Field Summary
Fields Modifier and Type Field Description static PropertyAccessStrategyBasicImpl
INSTANCE
Singleton access
-
Constructor Summary
Constructors Constructor Description PropertyAccessStrategyBasicImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyAccess
buildPropertyAccess(Class<?> containerJavaType, String propertyName, boolean setterRequired)
Build aPropertyAccess
for the indicated property
-
-
-
Field Detail
-
INSTANCE
public static final PropertyAccessStrategyBasicImpl INSTANCE
Singleton access
-
-
Method Detail
-
buildPropertyAccess
public PropertyAccess buildPropertyAccess(Class<?> containerJavaType, String propertyName, boolean setterRequired)
Description copied from interface:PropertyAccessStrategy
Build aPropertyAccess
for the indicated property- Specified by:
buildPropertyAccess
in interfacePropertyAccessStrategy
- Parameters:
containerJavaType
- The Java type that contains the property; may benull
for non-pojo cases.propertyName
- The property namesetterRequired
- Whether it is an error if we are unable to find a corresponding setter- Returns:
- The appropriate PropertyAccess
-
-