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
831 B
30 lines
831 B
package com.fr.design.locale.impl; |
|
|
|
import com.fr.design.i18n.LocaleLinkProvider; |
|
import com.fr.general.locale.LocaleMark; |
|
|
|
/** |
|
* @author hades |
|
* @version 10.0 |
|
* Created by hades on 2021/1/29 |
|
*/ |
|
public class BbsResetMark implements LocaleMark<String> { |
|
|
|
|
|
/** |
|
* 云中心老账户中心链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Account_Center"; |
|
|
|
/** |
|
* 云中心老账户中心链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Account_Center_Default"; |
|
|
|
public BbsResetMark() {} |
|
|
|
@Override |
|
public String getValue() { |
|
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
|
} |
|
}
|
|
|