if (fabricUrl != null && fabricUrl.length() > 0) {
LOG.info("Connecting to Fuse Fabric at " + fabricUrl);
ZKClientFactoryBean factory = new ZKClientFactoryBean();
factory.setPassword(fabricPassword);
factory.setConnectString(fabricUrl);
IZKClient zooKeeper = factory.getObject();
FabricServiceImpl impl = new FabricServiceImpl();
impl.setZooKeeper(zooKeeper);
impl.bindMBeanServer(mbeanServer);
//impl.init();
ZooKeeperDataStore dataStore = new ZooKeeperDataStore();