01: /**
02: *
03: */package org.acegisecurity.config;
04:
05: import org.springframework.beans.factory.xml.NamespaceHandlerSupport;
06:
07: /**
08: * @author Vishal Puri
09: *
10: */
11: public class SecurityAutoDetectNamepsaceHandler extends
12: NamespaceHandlerSupport {
13:
14: /* (non-Javadoc)
15: * @see org.springframework.beans.factory.xml.NamespaceHandler#init()
16: */
17: public void init() {
18: registerBeanDefinitionParser("autoconfig",
19: new AutoConfigBeanDefinitionParser());
20: }
21:
22: }
|