Set<InetSocketAddress> participants = new HashSet<InetSocketAddress>();
for (int i = 1; i < numOfParticipants; i++) {
participants.add(new InetSocketAddress(BASIC_PORT + numOfParticipants));
}
participants.add(config.getInetSocketAddress());
ParticipantsStates states = new ParticipantsStates(0, participants, new ClientFactory() {
@Override
public ProxyAccessClient getProxyClient(DatabaseManagerProxy dbManProxy) {
fail("Generation of RemoteAccessClients is not supported by this test.");
return null;