else if(SecurityConstraint.__BASIC_AUTH.equals(m))
authenticator=new BasicAuthenticator();
else if(SecurityConstraint.__DIGEST_AUTH.equals(m))
authenticator=new DigestAuthenticator();
else if(SecurityConstraint.__CERT_AUTH.equals(m))
authenticator=new ClientCertAuthenticator();
else if(SecurityConstraint.__CERT_AUTH2.equals(m))
authenticator=new ClientCertAuthenticator();
else
log.warn("UNKNOWN AUTH METHOD: "+m);
getWebApplicationContext().setAuthenticator(authenticator);
}
XmlParser.Node name=node.get("realm-name");