org.hibernate.event.DirtyCheckEvent Maven / Gradle / Ivy
//$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 - 2025 Weber Informatics LLC | Privacy Policy