VoltProjectBuilder builder = new VoltProjectBuilder();
builder.addSchema(schemaPath);
builder.addPartitionInfo("HELLOWORLD", "DIALECT");
GroupInfo gi = new GroupInfo("foo", true, false, true, true, false, false);
builder.addGroups(new GroupInfo[] { gi } );
// create 20 users, only the first one has an interesting user/pass
UserInfo[] ui = new UserInfo[15];
ui[0] = new UserInfo("ry@nlikesthe", "y@nkees", new String[] { "foo" } );
for (int i = 1; i < ui.length; i++) {