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

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

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: DirtyCheckEvent.java 7785 2005-08-08 23:24:44Z oneovthafew $
package org.hibernate.event;


/** Defines an event class for the dirty-checking of a session.
 *
 * @author Steve Ebersole
 */
public class DirtyCheckEvent extends FlushEvent {
	
	private boolean dirty;

	public DirtyCheckEvent(EventSource source) {
		super(source);
	}

	public boolean isDirty() {
		return dirty;
	}

	public void setDirty(boolean dirty) {
		this.dirty = dirty;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy