portletregistryservice.java

来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 34 行

JAVA
34
字号
package org.gridsphere.services.core.registry;import org.gridsphere.portlet.service.PortletService;import org.gridsphere.portletcontainer.ApplicationPortlet;import org.gridsphere.portletcontainer.PortletWebApplication;import java.util.Collection;import java.util.List;/** * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id$ */public interface PortletRegistryService extends PortletService {    public void addWebApplication(PortletWebApplication webApp);        public PortletWebApplication getWebApplication(String webappName);    public void addApplicationPortlet(ApplicationPortlet appPortlet);    public void removeApplicationPortlet(ApplicationPortlet applicationPortlet);    public ApplicationPortlet getApplicationPortlet(String applicationPortletID);    public Collection<ApplicationPortlet> getAllApplicationPortlets();    public List<ApplicationPortlet> getApplicationPortlets(String webApplicationName);    public String getApplicationPortletID(String concretePortletID);    public void logRegistry();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?