public Object performWithResult()
{
String userName = properties.getProperty("userName");
String password = properties.getProperty("password");
Authenticator authenticator = (Authenticator) SpringTools.getBean(Authenticator.ID);
return authenticator.authenticate(userName, password);
}
}