Class PropertyAccessBasicImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessBasicImpl
-
- All Implemented Interfaces:
PropertyAccess
public class PropertyAccessBasicImpl extends Object implements PropertyAccess
PropertyAccessor for accessing the wrapped property via get/set pair, which may be nonpublic.- See Also:
PropertyAccessStrategyBasicImpl
-
-
Constructor Summary
Constructors Constructor Description PropertyAccessBasicImpl(PropertyAccessStrategyBasicImpl strategy, Class<?> containerJavaType, String propertyName, boolean setterRequired)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Getter
getGetter()
Obtain the delegate for getting values for the described persistent propertyPropertyAccessStrategy
getPropertyAccessStrategy()
Access to the PropertyAccessStrategy that created this PropertyAccessSetter
getSetter()
Obtain the delegate for setting values for the described persistent property
-
-
-
Constructor Detail
-
PropertyAccessBasicImpl
public PropertyAccessBasicImpl(PropertyAccessStrategyBasicImpl strategy, Class<?> containerJavaType, String propertyName, boolean setterRequired)
-
-
Method Detail
-
getPropertyAccessStrategy
public PropertyAccessStrategy getPropertyAccessStrategy()
Description copied from interface:PropertyAccess
Access to the PropertyAccessStrategy that created this PropertyAccess- Specified by:
getPropertyAccessStrategy
in interfacePropertyAccess
- Returns:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
public Getter getGetter()
Description copied from interface:PropertyAccess
Obtain the delegate for getting values for the described persistent property- Specified by:
getGetter
in interfacePropertyAccess
- Returns:
- The property getter
-
getSetter
public Setter getSetter()
Description copied from interface:PropertyAccess
Obtain the delegate for setting values for the described persistent property- Specified by:
getSetter
in interfacePropertyAccess
- Returns:
- The property setter
-
-