if(user == null)
throw new Exception("Missing user-property for " + vcServerName + " (index: " + i + ")");
if(type == null)
throw new Exception("Missing type-property for " + vcServerName + " (index: " + i + ")");
VersionControlServerBean vcb = new VersionControlServerBean(vcServerName, host, path, module, user, password, type, port);
servers.put(vcServerName, vcb);
i++;
}
}