configuring an interceptor twice with different properties

Does the coldbox framework allow for a single interceptor be defined
twice in the configuration file with 2 different set of properties.

for example.

{class="uao.objectLibrary.commons.interceptors.checkButtonValueForSpan",
   properties={buttonName="btnSubmit"}
},
{class="uao.objectLibrary.commons.interceptors.checkButtonValueForSpan",
   properties={buttonName="btnModal"}
},

thanks.
Craig

Yes, but you need to add a name property to it.

{name=“Button1”, class=“uao.objectLibrary.commons.interceptors.checkButtonValueForSpan”,
properties={buttonName=“btnSubmit”}
},
{name=“Button2”, class=“uao.objectLibrary.commons.interceptors.checkButtonValueForSpan”,
properties={buttonName=“btnModal”}
},

Luis F. Majano
President
Ortus Solutions, Corp

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com

Thanks.... FYI. You are almighty!