ClientServerServicesProvider ssp = ClientServerServicesProvider.get(settings.getServer());
Authentification auth;
auth = ssp.getAuthentificationService().authenticate(settings.getUserName(), settings.getPassword(), "");
if (auth instanceof AuthSuccessfull) {
ModuleManagementService mms = ssp.getModuleManagementService();
FromDLModuleBuilder builder = new FromDLModuleBuilder(explorer, mms, settings.getModulesDir());
for (Iterator iter = explorer.getAllRevisions().iterator(); iter.hasNext();) {
Revision rev = (Revision)iter.next();
builder.build(rev);
}