本文整理了Java中com.atlassian.plugin.connect.modules.beans.builder.WebItemModuleBeanBuilder.withConditions()
方法的一些代码示例,展示了WebItemModuleBeanBuilder.withConditions()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebItemModuleBeanBuilder.withConditions()
方法的具体详情如下:
包路径:com.atlassian.plugin.connect.modules.beans.builder.WebItemModuleBeanBuilder
类名称:WebItemModuleBeanBuilder
方法名:withConditions
暂无
代码示例来源:origin: com.atlassian.plugins/atlassian-connect-server-extension-spi
@Override
public List<ModuleDescriptor<?>> createPluginModuleDescriptors(List<ConnectPageModuleBean> modules, ConnectAddonBean addon) {
List<ModuleDescriptor<?>> descriptors = new ArrayList<>();
for (ConnectPageModuleBean bean : modules) {
if (hasWebItem()) {
// create a web item targeting the iframe page
Integer weight = bean.getWeight() == null ? getDefaultWeight() : bean.getWeight();
String location = isNullOrEmpty(bean.getLocation()) ? getDefaultSection() : bean.getLocation();
WebItemModuleBean webItemBean = newWebItemBean()
.withName(bean.getName())
.withKey(bean.getRawKey())
.withContext(page)
.withUrl(ConnectIFrameServletPath.forModule(addon.getKey(), bean.getRawKey()))
.withLocation(location)
.withWeight(weight)
.withIcon(bean.getIcon())
.withConditions(bean.getConditions())
.setNeedsEscaping(needsEscaping())
.build();
descriptors.add(webItemModuleDescriptorFactory.createModuleDescriptor(
webItemBean, addon, getConditionClasses()));
}
descriptors.add(createPageIFrame(bean, addon));
descriptors.add(createRawIFrame(bean, addon));
}
return descriptors;
}
代码示例来源:origin: com.atlassian.plugins/atlassian-connect-extension-spi
private WebItemModuleBean createWebItemModuleBean(ConnectPageModuleBean bean, String url) {
Integer weight = bean.getWeight() == null ? getDefaultWeight() : bean.getWeight();
String location = isNullOrEmpty(bean.getLocation()) ? getDefaultSection() : bean.getLocation();
return newWebItemBean()
.withName(bean.getName())
.withKey(bean.getRawKey())
.withContext(page)
.withUrl(url)
.withLocation(location)
.withWeight(weight)
.withIcon(bean.getIcon())
.withConditions(bean.getConditions())
.setNeedsEscaping(needsEscaping())
.build();
}
代码示例来源:origin: com.atlassian.plugins/atlassian-connect-spi
@Override
public List<ModuleDescriptor> createPluginModuleDescriptors(List<ConnectPageModuleBean> modules, ConnectModuleProviderContext moduleProviderContext)
{
List<ModuleDescriptor> descriptors = new ArrayList<>();
final ConnectAddonBean connectAddonBean = moduleProviderContext.getConnectAddonBean();
for (ConnectPageModuleBean bean : modules)
{
if (hasWebItem())
{
// create a web item targeting the iframe page
Integer weight = bean.getWeight() == null ? getDefaultWeight() : bean.getWeight();
String location = isNullOrEmpty(bean.getLocation()) ? getDefaultSection() : bean.getLocation();
WebItemModuleBean webItemBean = newWebItemBean()
.withName(bean.getName())
.withKey(bean.getRawKey())
.withContext(page)
.withUrl(ConnectIFrameServletPath.forModule(connectAddonBean.getKey(), bean.getRawKey()))
.withLocation(location)
.withWeight(weight)
.withIcon(bean.getIcon())
.withConditions(bean.getConditions())
.setNeedsEscaping(needsEscaping())
.build();
descriptors.add(webItemModuleDescriptorFactory.createModuleDescriptor(moduleProviderContext,
pluginRetrievalService.getPlugin(), webItemBean, getConditionClasses()));
}
registerIframeRenderStrategy(bean, connectAddonBean);
}
return descriptors;
}
内容来源于网络,如有侵权,请联系作者删除!