com.ibm.portal.model
Interface VirtualPortalListProvider


public interface VirtualPortalListProvider

An interface for a provider of virtual portals. Context ctx = new InitialContext();
VirtualPortalListHome home = (VirtualPortalListHome) ctx.lookup(VirtualPortalListHome.VIRTUAL_PORTAL_LIST_JNDI_NAME);
if (home != null) {
VirtualPortalList list = home.getVirtualPortalListProvider().getVirtualPortalList(aRequest, aResponse);
...
}

Since:
6.1.0

Method Summary
<T extends java.lang.Object & VirtualPortal>
VirtualPortalList<T>
getVirtualPortalList()
          Returns the portal virtual portal.
<T extends java.lang.Object & VirtualPortal>
VirtualPortalList<T>
getVirtualPortalList(javax.servlet.ServletRequest aRequest, javax.servlet.ServletResponse aResponse)
          Returns the portal virtual portal.
 

Method Detail

getVirtualPortalList

<T extends java.lang.Object & VirtualPortal> VirtualPortalList<T> getVirtualPortalList(javax.servlet.ServletRequest aRequest,
                                                                                      javax.servlet.ServletResponse aResponse)
                                                                                  throws ModelException
Returns the portal virtual portal.

Parameters:
aRequest - the current request
aResponse - the current response
Returns:
the virtual portal valid in the current request
Throws:
ModelException

getVirtualPortalList

<T extends java.lang.Object & VirtualPortal> VirtualPortalList<T> getVirtualPortalList()
                                                                                  throws ModelException
Returns the portal virtual portal.

Returns:
the current virtual portal of the portal
Throws:
ModelException