In ColdBox, Event Handlers, Interceptors, and Plugins are represented as CFCs. You are probably used to their signatures looking like this:
myhandler.cfc
component extends="coldbox.system.EventHandler"{}
myInterceptor.cfc
component extends="coldbox.system.Interceptor"{}
myPlugin.cfc
...