package com.fr.env; import com.fr.design.i18n.LocaleLinkProvide; import com.fr.general.locale.LocaleMark; /** * @author hades * @version 10.0 * Created by hades on 2021/8/9 */ public class RemoteDesignLocaleMark implements LocaleMark { /** * 云中心远程设计常见问题链接在配置文件中对应的配置文件key */ private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Remote_Design_Question"; /** * 云中心远程设计常见问题链接在配置文件中对应的配置文件key */ private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Remote_Design_Question_Default"; public RemoteDesignLocaleMark() {} @Override public String getValue() { return LocaleLinkProvide.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); } }