|
ColdBox Platform Version 2.6.4 | ||||
| FRAMES | |||||
WEB-INF.cftags.component
coldbox.system.remote.ColdboxProxy
coldbox.system.orm.hibernate.EventHandler
public class EventHandler
******************************************************************************* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp www.coldbox.org | www.luismajano.com | www.ortussolutions.com ******************************************************************************* Author : Luis Majano Date : 10/16/2007 Description : Generic Hibernate Event Handler that ties to the ColdBox proxy for ColdBox Operations. This is just a base class you can inherit from to give you access to your ColdBox Application and the CF9 ORM event handler methods. Then you just need to use a la carte.
| Method Summary | |
|---|---|
void |
postDelete([any entity])
|
void |
postInsert([any entity])
|
void |
postLoad([any entity])
Whenever entities are loaded I get fired and can do some funky ColdBox wiring |
void |
postUpdate([any entity])
|
void |
preDelete([any entity])
|
void |
preInsert([any entity])
|
void |
preLoad([any entity])
|
void |
preUpdate([any entity], [Struct oldData])
|
| Methods inherited from class coldbox.system.remote.ColdboxProxy |
|---|
announceInterception, getBean, getColdboxOCM, getController, getInterceptor, getIoCFactory, getLogBox, getLogger, getModel, getPlugin, getRootLogger, getUtil, handleException, loadColdbox, process, pushTimers, setCOLDBOX_APP_KEY, tracer, verifyColdBox
|
| Methods inherited from class WEB-INF.cftags.component |
|---|
|
| Method Detail |
|---|
public void postDelete([any entity])
postDelete
in interface
CFIDE.orm.IEventHandler
entitypublic void postInsert([any entity])
postInsert
in interface
CFIDE.orm.IEventHandler
entitypublic void postLoad([any entity])
postLoad
in interface
CFIDE.orm.IEventHandler
entitypublic void postUpdate([any entity])
postUpdate
in interface
CFIDE.orm.IEventHandler
entitypublic void preDelete([any entity])
preDelete
in interface
CFIDE.orm.IEventHandler
entitypublic void preInsert([any entity])
preInsert
in interface
CFIDE.orm.IEventHandler
entitypublic void preLoad([any entity])
preLoad
in interface
CFIDE.orm.IEventHandler
entitypublic void preUpdate([any entity], [Struct oldData])
preUpdate
in interface
CFIDE.orm.IEventHandler
entityoldData
|
ColdBox Platform Version 2.6.4 | ||||
| FRAMES | |||||