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

com.avaje.ebeaninternal.server.properties.BeanPropertySetter Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
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.
	 */
	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 - 2024 Weber Informatics LLC | Privacy Policy