1 //$Id: DirtyCheckEvent.java,v 1.5 2005/05/27 03:53:58 oneovthafew Exp $2 package org.hibernate.event;3 4 5 /** Defines an event class for the dirty-checking of a session.6 *7 * @author Steve Ebersole8 */9 public class DirtyCheckEvent extends FlushEvent {10 11 public DirtyCheckEvent(EventSource source) {12 super(source);13 }14 15 }16