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

org.hibernate.event.PreUpdateEventListener Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: PreUpdateEventListener.java 11271 2007-03-12 00:16:48Z epbernard $
package org.hibernate.event;

import java.io.Serializable;

/**
 * Called before updating the datastore
 * 
 * @author Gavin King
 */
public interface PreUpdateEventListener extends Serializable {
	/**
	 * Return true if the operation should be vetoed
	 */
	public boolean onPreUpdate(PreUpdateEvent event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy