mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
24 lines
492 B
Java
24 lines
492 B
Java
package com.avaje.ebeaninternal.server.properties;
|
|
|
|
import com.avaje.ebean.bean.EntityBean;
|
|
|
|
/**
|
|
* The setter for a given bean property.
|
|
*/
|
|
public interface BeanPropertySetter {
|
|
|
|
/**
|
|
* Set the property value of a bean.
|
|
*/
|
|
public void set(EntityBean bean, Object value);
|
|
|
|
/**
|
|
* Set the property value of a bean with interception checks.
|
|
* <p>
|
|
* This could invoke lazy loading and or oldValues creation.
|
|
* </p>
|
|
*/
|
|
public void setIntercept(EntityBean bean, Object value);
|
|
|
|
}
|