Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
themeEclipse
firstline1
title前端接口
linenumberstrue
BI.config("dec.user.setting.authentications", function (items) {
	items.push({
		value: "认证方式的标识符",
        text: "认证方式的名称",
        "@class": "PassportBean的类名",
        component: {
			type: "认证方式的配置UI组件类型"
		}
	});
	return items;
});


四、支持版本

产品线

版本

支持情况

备注

FR10.0支持
BI5.1支持不支持BI的仪表板
BI5.1.2支持不支持BI的仪表板
BI5.1.3支持不支持BI的仪表板

五、插件注册

Code Block
languagexml
themeEclipse
firstline1
titleplugin.xml
linenumberstrue
<extra-decision>
	<WebResourceProvider class="your classname"/>
	<PassportProvider class="your classname"/>
</extra-decision>

...

需要注意的是,这个接口不是用来做单点登录的(需要先区分登录和单点登录的差异)

使用改接口扩展认证方式后,同步用户或添加用户将不能同步或设置密码信息!

八、常用链接

demo地址:demo-passport-provider

...