Class PropertyAccessBasicImpl
java.lang.Object
org.hibernate.property.access.internal.PropertyAccessBasicImpl
- All Implemented Interfaces:
PropertyAccess
PropertyAccess
for accessing the wrapped property via get/set pair, which may be nonpublic.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyAccessBasicImpl
(PropertyAccessStrategyBasicImpl strategy, Class<?> containerJavaType, String propertyName, boolean setterRequired) -
Method Summary
Modifier and TypeMethodDescriptionObtain the delegate for getting values of the persistent attribute.Access to thePropertyAccessStrategy
that created this instance.@Nullable Setter
Obtain the delegate for setting values of the persistent attribute.
-
Constructor Details
-
PropertyAccessBasicImpl
public PropertyAccessBasicImpl(PropertyAccessStrategyBasicImpl strategy, Class<?> containerJavaType, String propertyName, boolean setterRequired)
-
-
Method Details
-
getPropertyAccessStrategy
Description copied from interface:PropertyAccess
Access to thePropertyAccessStrategy
that created this instance.- Specified by:
getPropertyAccessStrategy
in interfacePropertyAccess
- Returns:
- The
PropertyAccessStrategy
-
getGetter
Description copied from interface:PropertyAccess
Obtain the delegate for getting values of the persistent attribute.- Specified by:
getGetter
in interfacePropertyAccess
- Returns:
- The property getter
-
getSetter
Description copied from interface:PropertyAccess
Obtain the delegate for setting values of the persistent attribute.- Specified by:
getSetter
in interfacePropertyAccess
- Returns:
- The property setter
-