}
private static String getJgroupsConfig(String xmlString) {
try {
Element e = XmlConfigHelper.stringToElement(xmlString);
JGroupsStackParser parser = new JGroupsStackParser();
return parser.parseClusterConfigXml(e);
} catch (Exception ex) {
throw new RuntimeException("Unexpected!", ex);
}
}