com.actionsoft.apps.listener.PluginListener
PluginListener
是AWS PaaS注册扩展插件的总接口,每个App只允许提供一个PluginListener
的实现,用来汇聚该App所开发的全部插件。
建议在你的App Java package根下,创建一个名为
Plugins
的类。如你的AppId为com.abc.apps.crm
,类路径看起来如下com.abc.apps.crm.Plugins
PluginListener
接口实现类,注册插件配置应用管理 > 应用开发 > 配置应用
或AWS Developer中配置该App的扩展插件
选项public interface PluginListener {
/**
* 返回该App插件注册列表, 这个列表是开发者对各种插件描述接口实现类
*
* @param context App应用对象
* @see AWSPluginProfile
* 插件注册描述接口,平台提供对应的XXPluginProfile(如@公式是AtFormulaPluginProfile)
*/
public List<AWSPluginProfile> register(AppContext context);
}