All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yixan.base.web.utils.WebConfig Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
package com.yixan.base.web.utils;

import com.yixan.tools.common.util.config.Config;

/**
 * 标签配置项工具类
 *
 * @author 赵卉华
 * @version C01 2014年6月19日
 * @since v1.0
 */
public class WebConfig extends Config {

    /** 版本序列号 **/
    private static final long serialVersionUID = 1L;

    /** 配置文件相对路径 **/
    private static final String PATH = "/settings/web/tlds.cfg";

    /**
     * 单例实例
     */
    private static WebConfig instance = new WebConfig();

    public WebConfig() {
        super(PATH);
    }

    /**
     * 获取对象实例
     *
     * @return WebConfig
     */
    public static WebConfig getInstance() {
        return instance;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy