本文整理了Java中org.exoplatform.container.xml.ValuesParam.getValues()方法的一些代码示例,展示了ValuesParam.getValues()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ValuesParam.getValues()方法的具体详情如下:包路径:org.exoplatform.container.xml.ValuesParam类名称:ValuesParam方法名:getValues
ValuesParam.getValues介绍
暂无
代码示例
代码示例来源:origin: exoplatform/platform
public UserNavigationHandlerServiceImpl(InitParams initParams) { userNavigatiOnuri= initParams.getValuesParam("user.navigation.uri").getValues();}
代码示例来源:origin: org.exoplatform.jcr/exo.jcr.component.core
public AddNodeTypePlugin(InitParams params){ Iterator vparams = params.getValuesParamIterator(); while (vparams.hasNext()) { ValuesParam nodeTypeParam = vparams.next(); nodeTypes.put(nodeTypeParam.getName(), nodeTypeParam.getValues()); }}
代码示例来源:origin: org.exoplatform.jcr/exo.jcr.component.core
private void initValuesParameters(InitParams initialParameters){ Iterator valuesParamIterator = initialParameters.getValuesParamIterator(); while (valuesParamIterator.hasNext()) { ValuesParam valuesParam = valuesParamIterator.next(); if (UNMODIFIABLE.equals(valuesParam.getName())) { unmodifiable.addAll(valuesParam.getValues()); } if (BEFORE_INITIALIZE.equals(valuesParam.getName())) { beforeInitialize.addAll(valuesParam.getValues()); } }}
代码示例来源:origin: exoplatform/platform
public UpgradeNodeTypesTemplatesService(RepositoryService repositoryService, NodeHierarchyCreator nodeHierarchyCreator, DMSConfiguration dmsConfiguration, TemplateService templateService, ConfigurationManager configurationManager, InitParams initParams) { super(initParams); this.templateService = templateService; this.cOnfigurationManager= configurationManager; this.repositoryService = repositoryService; this.dmsCOnfiguration= dmsConfiguration; // List of eXo predefined Templates component-plugin names, // that contains the DocumentType Templates // that we want to be upgraded each Platform upgrade List pluginNamesList = initParams.getValuesParam("plugin-names").getValues(); for (Object object : pluginNamesList) { this.pluginNamesList.add((String) object); } cmsTemplatesBasePath = nodeHierarchyCreator.getJcrPath(BasePath.CMS_TEMPLATES_PATH); if (cmsTemplatesBasePath == null) { throw new RuntimeException("UpgradeNodeTypesTemplatesService: " + BasePath.CMS_TEMPLATES_PATH + " path couldn't be found"); }}
代码示例来源:origin: org.exoplatform.kernel/exo.kernel.component.common
if (vp != null } else { portletsManagedByProfile = new ArrayList(); } Iterator iterator = initParams.getObjectParamValues(Module.class).iterator(); while (iterator.hasNext()) { Module module = iterator.next(); if (LOG.isDebugEnabled()) { LOG.debug(module.toString()); } modulesByName.put(module.getName(), module); }}
代码示例来源:origin: org.exoplatform.portal/exo.portal.component.common
public ChromatticLifeCycle(InitParams params){ Map optiOns= new HashMap(); PropertiesParam pp = params.getPropertiesParam("options"); if (pp != null) { options.putAll(pp.getProperties()); } this.domainName = params.getValueParam("domain-name").getValue(); this.workspaceName = params.getValueParam("workspace-name").getValue(); this.entityClassNames = params.getValuesParam("entities").getValues(); this.optiOnMap= options;}
代码示例来源:origin: exoplatform/platform
List mixins = mixinsValueParam.getValues();for (String mixin : mixins) { if (!StringUtils.isBlank(mixin)) {List mixins = mixinsExceptionsValueParam.getValues();
代码示例来源:origin: exoplatform/platform
ValuesParam exts = params.getValuesParam("properties.urls");if (exts != null) { for (Object val : exts.getValues()) { String path = (String) val; if (path != null) {【本文转自:香港服务器 http://www.558idc.com/hk.html提供,感谢支持】