|
|
|
@ -12,14 +12,14 @@ import com.fr.general.CloudCenter;
|
|
|
|
|
public class AlphaFineCloudConstants { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get PluginSearchUrl |
|
|
|
|
* 获取插件搜索api |
|
|
|
|
*/ |
|
|
|
|
public static String getPluginSearchUrl() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("plugin.searchAPI"); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get SearchAllPluginUrl |
|
|
|
|
* 帆软市场里全部插件api |
|
|
|
|
*/ |
|
|
|
|
public static String getSearchAllPluginUrl() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("plugin.all.searchAPI"); |
|
|
|
@ -47,21 +47,21 @@ public class AlphaFineCloudConstants {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get DocumentSearchUrl |
|
|
|
|
* 帮助文档搜索api |
|
|
|
|
*/ |
|
|
|
|
public static String getDocumentSearchUrl() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.doc_search"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get DocumentInformationUrl |
|
|
|
|
* 帮助文档信息api |
|
|
|
|
*/ |
|
|
|
|
public static String getDocumentInformationUrl() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.doc_info"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get PluginImageUrl |
|
|
|
|
* 插件图片api |
|
|
|
|
*/ |
|
|
|
|
public static String getPluginImageUrl() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.plugin_image"); |
|
|
|
@ -96,14 +96,14 @@ public class AlphaFineCloudConstants {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get AlphaHotSearch |
|
|
|
|
* 获取热门问题 |
|
|
|
|
*/ |
|
|
|
|
public static String getAlphaHotSearch() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.hot_search"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get AlphaGoToForum |
|
|
|
|
* 跳转论坛url |
|
|
|
|
*/ |
|
|
|
|
public static String getAlphaGoToForum() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.go_fourm"); |
|
|
|
@ -124,23 +124,20 @@ public class AlphaFineCloudConstants {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get AlphaCid |
|
|
|
|
* cid系统的产品动态api |
|
|
|
|
*/ |
|
|
|
|
public static String getAlphaCid() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.cid.new"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get AlphaCidUserGroupInfo |
|
|
|
|
* cid系统的 用户组信息api |
|
|
|
|
*/ |
|
|
|
|
public static String getAlphaCidUserGroupInfo() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.cid.user.group.info"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get DefaultRecommend |
|
|
|
|
*/ |
|
|
|
|
public static String getDefaultRecommend() { |
|
|
|
|
private static String getDefaultRecommend() { |
|
|
|
|
String quickStartUrl = CloudCenter.getInstance().acquireUrlByKind("af.help.quick.start"); |
|
|
|
|
String reportLearningPath = CloudCenter.getInstance().acquireUrlByKind("af.help.report.learning.path"); |
|
|
|
|
String parameterLearningPath = CloudCenter.getInstance().acquireUrlByKind("af.help.param.learning.path"); |
|
|
|
@ -156,7 +153,7 @@ public class AlphaFineCloudConstants {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* get AlphaHelpRecommend |
|
|
|
|
* 获取默认推荐帮助文档url |
|
|
|
|
*/ |
|
|
|
|
public static String getAlphaHelpRecommend() { |
|
|
|
|
return CloudCenter.getInstance().acquireUrlByKind("af.recommend", getDefaultRecommend()); |
|
|
|
|