App interceptor locations

I'm working on my first interceptor, wondering if Ipaths'm missing
something obvious about where it goes and how to configure ColdBox to
see it.

There's an interceptors directory in the stock app. If I put my
interceptor in there, how to I configure that path in coldbox.xml? The
only way I could get it to work was to hard code the name of my app
onto the front of the interceptor path, like this:
   <Interceptor class="NameOfMyApp.interceptors.NameOfMyInterceptor">

I tried "interceptors.NameOfMyInterceptor" and "NameOfMyInterceptor"
by itself, no go.

It looks like the config path is used directly as a cfc instantiation
path. If it's really that simple, it make things less portable than if
there was a way to say, "in the interceptors directory for this app".
If the app moves to a different directory, or gets renamed, I'll need
to change that config.

Is there some convention or other magic move that accomplishes what
I'm after here?

Thanks,
Dave

(sorry for the double post, gmail weirdness..)