com.groiss.store
Interface PersistentEventHandler

All Known Implementing Classes:
ObjectExtensionCleaner

public interface PersistentEventHandler

This interface provides a hook for some action when an object is inserted, updated or deleted. The methods onInsert, onUpdate, and onDelete are called before the database operation is performed but after the corresponding methods of Persistent are called. Register your event handler using StoreUtil.addEventHandler(PersistentEventHandler, Class[])


Method Summary
 void onDelete(Persistent o)
           
 void onInsert(Persistent o)
           
 void onUpdate(Persistent o)
           
 

Method Detail

onInsert

void onInsert(Persistent o)

onUpdate

void onUpdate(Persistent o)

onDelete

void onDelete(Persistent o)


@enterprise 8.0.22989 Copyright © 2001-2017 Groiss Informatics GmbH. All Rights Reserved.