serializableClientEndPoints.add(new SerializableClientEndPoint(client));
}
memberState.setClients(serializableClientEndPoints);
memberState.setAddress(node.getThisAddress().getHost() + ":" + node.getThisAddress().getPort());
createJMXBeans(memberState);
PartitionService partitionService = instance.getPartitionService();
Set<Partition> partitions = partitionService.getPartitions();
memberState.clearPartitions();
for (Partition partition : partitions) {
if (partition.getOwner() != null && partition.getOwner().localMember()) {
memberState.addPartition(partition.getPartitionId());
}