Tool to run the repository standalone (useful for CIFS and FTP server testing)

Importer no longer flushes integrity events
Improvement to one-jar ant script
Changed bean local references to normal references in scheduler


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2286 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-02-02 14:50:18 +00:00
parent a38de2aa2d
commit 21eab8566f
5 changed files with 152 additions and 22 deletions

View File

@@ -178,7 +178,7 @@ public abstract class Tool
private void login()
{
// TODO: Replace with call to ServiceRegistry
AuthenticationService auth = (AuthenticationService)appContext.getBean("authenticationService");
AuthenticationService auth = (AuthenticationService) serviceRegistry.getAuthenticationService();
auth.authenticate(toolContext.getUsername(), toolContext.getPassword().toCharArray());
log("Connected as " + toolContext.getUsername());
}