/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.property.access.internal;

import org.hibernate.property.access.spi.PropertyAccess;
import org.hibernate.property.access.spi.PropertyAccessStrategy;

A PropertyAccessStrategy that selects between available getter/setter method and/or field.
Author:Steve Ebersole
/** * A PropertyAccessStrategy that selects between available getter/setter method and/or field. * * @author Steve Ebersole */
public class PropertyAccessStrategyMixedImpl implements PropertyAccessStrategy {
Singleton access
/** * Singleton access */
public static final PropertyAccessStrategyMixedImpl INSTANCE = new PropertyAccessStrategyMixedImpl(); @Override public PropertyAccess buildPropertyAccess(Class containerJavaType, String propertyName) { return new PropertyAccessMixedImpl( this, containerJavaType, propertyName ); } }