AppExtensionProfile
描述这个插件,绑定应用扩展点(见本文档插件开发 > 绑定应用扩展点章节)PluginListener
类(见本文档插件应用 > PluginListener章节)注意:本章节提供的相关接口说明,请以aws-api-doc为主。
由AppExtensionProfile
类完成向通知中心
的注册。
// 注册通知中心
Map<String, Object> params1 = new HashMap<String, Object>();
params1.put("systemName", MyFormatter.DEMO_NAME);
params1.put("icon", "../apps/com.actionsoft.apps.poc.plugin/img/icon96.png");
params1.put("formatter", MyFormatter.class.getName());
list.add(new AppExtensionProfile(MyFormatter.DEMO_NAME, "aslp://com.actionsoft.apps.notification/registerApp", params1));
要成功注册,必须设置该应用依赖com.actionsoft.apps.notification
,即在该应用的manifest.xml
声明依赖
<requires>
<require appId="com.actionsoft.apps.notification" notActiveHandler="error"/>
</requires>
一个提供parser()方法的Java类,继承NotificationMessageFormatter
父类
/**
* @param user 通知查看人
* @param content 发送的原始内容,可能是简单信息也可能是开发者约定的json串
* @return ResponseObject,包含content和buttons两个变量
*/
public ResponseObject parser(UserContext user, String content) {
// 封装结果
ResponseObject ro = ResponseObject.newOkResponse();
...
return ro;
}
该方法要求返回一个ResponseObject对象,该对象含有一个名为content
的字符串和buttons
的ArrayList(非必须)。ArrayList是一个Map