public static class ChannelLookup implements JGroupsChannelLookup {
@Override
public Channel getJGroupsChannel(Properties properties) {
try {
Channel channel = new MuxChannel(XmlConfigurator.getInstance(Thread.currentThread().getContextClassLoader().getResource("jgroups-udp.xml")));
return channel;
} catch (Exception e) {
throw new IllegalStateException(e);
}
}