io.ebeaninternal.server.properties.BeanPropertySetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.properties;
import io.ebean.bean.EntityBean;
/**
* The setter for a given bean property.
*/
public interface BeanPropertySetter {
/**
* Set the property value of a bean.
*/
void set(EntityBean bean, Object value);
/**
* Set the property value of a bean with interception checks.
*
* This could invoke lazy loading and or oldValues creation.
*
*/
void setIntercept(EntityBean bean, Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy