Fqn fqn1 = Fqn.ROOT;
Fqn fqn2 = Fqn.fromString("/hello/world");
Fqn fqn3 = Fqn.fromString("/hello/again");
Fqn fqn4 = Fqn.fromString("/buddy/replication");
PutKeyValueCommand call1 = new PutKeyValueCommand(null, fqn1, "key", "value");
PutKeyValueCommand call2 = new PutKeyValueCommand(null, fqn2, "key", "value");
PutKeyValueCommand call3 = new PutKeyValueCommand(null, fqn3, "key", "value");
PutKeyValueCommand call4 = new PutKeyValueCommand(null, fqn4, "key", "value");
List<ReplicableCommand> list = new ArrayList<ReplicableCommand>();
list.add(call1);
list.add(call2);
list.add(call3);
list.add(call4);