portletwebapplication.java
来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 46 行
JAVA
46 行
/* * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: PortletWebApplication.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.portletcontainer;import java.util.Collection;/** * A <code>PortletWebApplication</code> represents a collection of portlets contained in a packaged WAR file. Currently * under development is the notion of dynamically managing portlet web applications. */public interface PortletWebApplication { /** * Under development. A portlet web application can unregister itself from the application server */ public void destroy(); /** * Returns the portlet web application name * * @return the portlet web application name */ public String getWebApplicationName(); /** * Returns the portlet web application description * * @return the portlet web application description */ public String getWebApplicationDescription(); /** * Returns the collection of application portlets contained by this portlet web application * * @return the collection of application portlets */ public Collection<ApplicationPortlet> getAllApplicationPortlets(); public PortletStatus getWebApplicationStatus(); public String getWebApplicationStatusMessage();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?