RootBeanDefinition interceptor = getStandardFilter(pc, FilterSecurityInterceptor.class.getName());
Object accessDecisionManager = interceptor.getPropertyValues().getPropertyValue("accessDecisionManager").getValue();
Object authenticationManager = interceptor.getPropertyValues().getPropertyValue("authenticationManager").getValue();
final UrlMatcher matcher = createUrlMatcher(element);
builder.addPropertyValue("accessDecisionManager", accessDecisionManager);
builder.addPropertyValue("authenticationManager", authenticationManager);
builder.addPropertyValue("objectDefinitionSource", new ZkEventProcessDefinitionSourceImpl(matcher, requestMap));
pc.getRegistry().registerBeanDefinition(ZkBeanIds.ZK_EVENT_PROCESS_INTERCEPTOR, builder.getBeanDefinition());
}