try {
m_AuthManager = (AuthenticationManager) Class.forName(sAuthManagerClass).newInstance();
} catch (final Exception e) {
log4j.error("Authentication manager not defined", e);
m_AuthManager = new DefaultAuthenticationManager();
}
try {
m_AuthManager.init(this);
} catch (final AuthenticationException e) {