/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.event.spi; import org.hibernate.engine.spi.EntityEntry; /** * @author Gavin King */ public class FlushEntityEvent extends AbstractEvent { private Object entity; private Object[] propertyValues; private Object[] databaseSnapshot; private int[] dirtyProperties; private boolean hasDirtyCollection; private boolean dirtyCheckPossible; private boolean dirtyCheckHandledByInterceptor; private EntityEntry entityEntry; public FlushEntityEvent(EventSource source, Object entity, EntityEntry entry) { super(source); this.entity = entity; this.entityEntry = entry; } public EntityEntry getEntityEntry() { return entityEntry; } public Object[] getDatabaseSnapshot() { return databaseSnapshot; } public void setDatabaseSnapshot(Object[] databaseSnapshot) { this.databaseSnapshot = databaseSnapshot; } public boolean hasDatabaseSnapshot() { return databaseSnapshot!=null; } public boolean isDirtyCheckHandledByInterceptor() { return dirtyCheckHandledByInterceptor; } public void setDirtyCheckHandledByInterceptor(boolean dirtyCheckHandledByInterceptor) { this.dirtyCheckHandledByInterceptor = dirtyCheckHandledByInterceptor; } public boolean isDirtyCheckPossible() { return dirtyCheckPossible; } public void setDirtyCheckPossible(boolean dirtyCheckPossible) { this.dirtyCheckPossible = dirtyCheckPossible; } public int[] getDirtyProperties() { return dirtyProperties; } public void setDirtyProperties(int[] dirtyProperties) { this.dirtyProperties = dirtyProperties; } public boolean hasDirtyCollection() { return hasDirtyCollection; } public void setHasDirtyCollection(boolean hasDirtyCollection) { this.hasDirtyCollection = hasDirtyCollection; } public Object[] getPropertyValues() { return propertyValues; } public void setPropertyValues(Object[] propertyValues) { this.propertyValues = propertyValues; } public Object getEntity() { return entity; } }