_mappedInterceptors[wildcard] = interceptor;
else if(existing instanceof InterceptorCollection)
((InterceptorCollection)existing).addInterceptor(interceptor);
else
{
InterceptorCollection ic = new InterceptorCollection();
ic.addInterceptor(existing);
ic.addInterceptor(interceptor);
_mappedInterceptors[wildcard] = ic;
}
}