* @param records memory journal's list of records
*/
private ClusterNode createClusterNode(String id, ArrayList records)
throws ClusterException {
BeanConfig bc = new BeanConfig(MemoryJournal.class.getName(), new Properties());
JournalConfig jc = new JournalConfig(bc);
ClusterConfig cc = new ClusterConfig(id, SYNC_DELAY, jc);
SimpleClusterContext context = new SimpleClusterContext(cc);
ClusterNode clusterNode = new ClusterNode();