All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.property.access.spi.PropertyAccess Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * 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 .
 */
package org.hibernate.property.access.spi;

/**
 * Describes access to a particular persistent property in terms of getting and setting
 * values.
 * 

* Instances are obtained from {@link PropertyAccessStrategy} * * @author Steve Ebersole * @author Gavin King */ public interface PropertyAccess { /** * Access to the PropertyAccessStrategy that created this PropertyAccess * * @return The PropertyAccessStrategy that created this PropertyAccess */ PropertyAccessStrategy getPropertyAccessStrategy(); /** * Obtain the delegate for getting values for the described persistent property * * @return The property getter */ Getter getGetter(); /** * Obtain the delegate for setting values for the described persistent property * * @return The property setter */ Setter getSetter(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy