/**
* Create a new interceptor chain.
*/
public InterceptorChain()
{
MutableInterceptorConfiguration tailCfg = new MutableInterceptorConfiguration();
tailCfg.setName( "tail" );
tailCfg.setInterceptor( FINAL_INTERCEPTOR );
tail = new Entry( null, null, tailCfg );
head = tail;
}