📄 portletwebapplication.java
字号:
/* * @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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -