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
874 B
30 lines
874 B
package com.fr.design.locale.impl; |
|
|
|
import com.fr.design.i18n.LocaleLinkProvider; |
|
import com.fr.general.locale.LocaleMark; |
|
|
|
|
|
/** |
|
* 根据图片信息生成获取国际化服务器图标工具 |
|
* |
|
* @author obo |
|
* @since 11.0 |
|
* Created on 2023/4/19 |
|
*/ |
|
public class DataMaskMark implements LocaleMark<String> { |
|
|
|
/** |
|
* 云中心数据脱敏帮助链接链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Data_Mask"; |
|
|
|
/** |
|
* 云中心数据脱敏默认帮助链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design_Report_Desensitization_Help_Document_Url"; |
|
|
|
@Override |
|
public String getValue() { |
|
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
|
} |
|
}
|
|
|