You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
869 B
30 lines
869 B
package com.fr.env; |
|
|
|
import com.fr.design.i18n.LocaleLinkProvider; |
|
import com.fr.general.locale.LocaleMark; |
|
|
|
/** |
|
* @author hades |
|
* @version 10.0 |
|
* Created by hades on 2021/8/9 |
|
*/ |
|
public class RemoteDesignLocaleMark implements LocaleMark<String> { |
|
|
|
/** |
|
* 云中心远程设计常见问题链接在配置文件中对应的配置文件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 LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
|
} |
|
|
|
}
|
|
|