Class PropertyAccessStrategyChainedImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessStrategyChainedImpl
-
- All Implemented Interfaces:
PropertyAccessStrategy
public class PropertyAccessStrategyChainedImpl extends Object implements PropertyAccessStrategy
-
-
Constructor Summary
Constructors Constructor Description PropertyAccessStrategyChainedImpl(PropertyAccessStrategy... chain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyAccessbuildPropertyAccess(Class<?> containerJavaType, String propertyName, boolean setterRequired)Build aPropertyAccessfor the indicated property
-
-
-
Constructor Detail
-
PropertyAccessStrategyChainedImpl
public PropertyAccessStrategyChainedImpl(PropertyAccessStrategy... chain)
-
-
Method Detail
-
buildPropertyAccess
public PropertyAccess buildPropertyAccess(Class<?> containerJavaType, String propertyName, boolean setterRequired)
Description copied from interface:PropertyAccessStrategyBuild aPropertyAccessfor the indicated property- Specified by:
buildPropertyAccessin interfacePropertyAccessStrategy- Parameters:
containerJavaType- The Java type that contains the property; may benullfor 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
-
-