站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBOSS Portal 2.2 API 英文版文档

WebAppRegistry - JBOSS Portal 2.2 API 英文版文档


org.jboss.portal.server.app
Interface WebAppRegistry

All Known Subinterfaces:
JBossWebAppRegistry
All Known Implementing Classes:
JBossWebAppRegistryImpl

public interface WebAppRegistry


Method Summary
 java.util.Collection getAllWebApp()
          Return an immutable list all the known web application in the registry.
 Component getComponent(java.lang.String id)
          Return a component using its id or null if it does not exist.
 WebApp getWebApp(java.lang.String id)
          Return a web app using its id or null if it does not exist.
 void registerWebApp(WebApp webApp)
          Register a web application.
 void unregisterWebApp(java.lang.String id)
          Unregister a web application using its id.
 

Method Detail

registerWebApp

public void registerWebApp(WebApp webApp)
Register a web application.


unregisterWebApp

public void unregisterWebApp(java.lang.String id)
Unregister a web application using its id.


getAllWebApp

public java.util.Collection getAllWebApp()
Return an immutable list all the known web application in the registry.


getWebApp

public WebApp getWebApp(java.lang.String id)
Return a web app using its id or null if it does not exist.


getComponent

public Component getComponent(java.lang.String id)
Return a component using its id or null if it does not exist.