if ( users.get( source.getPrincipal() ) != null )
{
result = new AuthenticationResult( true, source.getPrincipal(), null );
User user = new JdoUser();
user.setUsername( source.getPrincipal() );
user.setPassword( users.get( source.getPrincipal() ) );
session = new DefaultSecuritySession( result, user );
}
else
{