Examples of DisconfCenterFile


Examples of com.baidu.disconf.client.common.model.DisconfCenterFile

     * @param fileName
     * @return
     */
    public String getFileZooPath(String fileName) {

        DisconfCenterFile disconfCenterFile = disconfCenterStore
                .getConfFileMap().get(fileName);

        // 校验是否存在
        if (disconfCenterFile == null) {
            LOGGER.error("canot find " + fileName + " in store....");
            return null;
        }

        return disconfCenterFile.getDisConfCommonModel().getZookeeperUrl();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.