private void process(DLExplorer explorer) throws ServiceException {
ModuleDescriptor[] mds = _mms.getAllModules();
System.out.println("found "+mds.length+" modules on woj server");
for (ModuleDescriptor md : mds) {
File revDir = explorer.getRevisionDir(new Revision(new Module(new Organisation(md.getOrganisation()), md.getModule()), md.getRevision()));
if (!revDir.exists()) {
System.out.println("found revision to remove: "+md);
_mms.removeModule(md.getId());
System.out.println("revision removed: "+md);