throws ConfigurationException {
String handlerName = conf.getAttribute("security-handler", null);
String storeName = conf.getAttribute("store", null);
try {
if ( handlerName == null ) {
this.handler = new AnonymousSecurityHandler();
} else {
if ( !handlerName.startsWith(HANDLER_CONFIG_PREFIX) ) {
handlerName = HANDLER_CONFIG_PREFIX + handlerName;
}
this.handler = (SecurityHandler)this.manager.lookup(handlerName);