Class PropertyAccessEmbeddedImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessEmbeddedImpl
-
- All Implemented Interfaces:
PropertyAccess
public class PropertyAccessEmbeddedImpl extends Object implements PropertyAccess
PropertyAccess for handling non-aggregated composites.IMPL NOTE : We actually use a singleton for the Setter; we cannot for the getter mainly because we need to differentiate
Getter.getReturnTypeClass(). Ultimately I'd prefer to model that "common information" on PropertyAccess itself.
-
-
Constructor Summary
Constructors Constructor Description PropertyAccessEmbeddedImpl(PropertyAccessStrategyEmbeddedImpl strategy, Class<?> containerType, String propertyName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GettergetGetter()Obtain the delegate for getting values for the described persistent propertyPropertyAccessStrategygetPropertyAccessStrategy()Access to the PropertyAccessStrategy that created this PropertyAccessSettergetSetter()Obtain the delegate for setting values for the described persistent property
-
-
-
Constructor Detail
-
PropertyAccessEmbeddedImpl
public PropertyAccessEmbeddedImpl(PropertyAccessStrategyEmbeddedImpl strategy, Class<?> containerType, String propertyName)
-
-
Method Detail
-
getPropertyAccessStrategy
public PropertyAccessStrategy getPropertyAccessStrategy()
Description copied from interface:PropertyAccessAccess to the PropertyAccessStrategy that created this PropertyAccess- Specified by:
getPropertyAccessStrategyin interfacePropertyAccess- Returns:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
public Getter getGetter()
Description copied from interface:PropertyAccessObtain the delegate for getting values for the described persistent property- Specified by:
getGetterin interfacePropertyAccess- Returns:
- The property getter
-
getSetter
public Setter getSetter()
Description copied from interface:PropertyAccessObtain the delegate for setting values for the described persistent property- Specified by:
getSetterin interfacePropertyAccess- Returns:
- The property setter
-
-