Skip to content

Commit 502971f

Browse files
committed
- Regression Event Handler not implementing interface methods properly for ACF
1 parent 6a24dcb commit 502971f

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

models/BXEventHandler.bx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22
* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp
33
* www.ortussolutions.com
44
* ---
5-
* Generic Hibernate Event Handler that ties to the ColdBox proxy for ColdBox Operations.
6-
* This is just a base class you can inherit from to give you access to your ColdBox
7-
* Application and the CF9 ORM event handler methods. Then you just need to
8-
* use a la carte.
9-
*
10-
* We also execute interception points that match the ORM events so you can eaisly
11-
* chain ORM interceptions.
5+
* Event Handler that listens to ORM events and announces them as ColdBox events
6+
* using BoxLang PRIME ORM.
127
*
138
*/
149
class extends="coldbox.system.remote.ColdboxProxy" {

models/EventHandler.cfc

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22
* Copyright Since 2005 ColdBox Framework by Luis Majano and Ortus Solutions, Corp
33
* www.ortussolutions.com
44
* ---
5-
* Generic Hibernate Event Handler that ties to the ColdBox proxy for ColdBox Operations.
6-
* This is just a base class you can inherit from to give you access to your ColdBox
7-
* Application and the CF9 ORM event handler methods. Then you just need to
8-
* use a la carte.
5+
* This Event Handler listens to ORM events and announces them as ColdBox events.
6+
* This event handler should ONLY be used for CFML engines that support ORM event handlers.
97
*
10-
* We also execute interception points that match the ORM events so you can eaisly
11-
* chain ORM interceptions.
8+
* If you are using BoxLang PRIME ORM, use the BXEventHandler.cfc instead.
129
*
1310
*/
1411
component extends="coldbox.system.remote.ColdboxProxy" implements="CFIDE.orm.IEventHandler" {

0 commit comments

Comments
 (0)