com.ibm.portal.model
Interface ClientListProvider
-
public interface ClientListProvider
An interface for a provider of client lists.
Context ctx = new InitialContext();
ClientListHome home = (ClientListHome) ctx.lookup(ClientListHome.CLIENT_LIST_JNDI_NAME);
if (home != null) {
ClientList list = home.getClientListProvider().getClientList(aRequest, aResponse);
...
}
- Since:
- 6.1.0
Method Summary
|
|
getClientList()
Return the portal client list. |
|
getClientList(javax.servlet.ServletRequest aRequest,
javax.servlet.ServletResponse aResponse)
Return the portal client list. |
getClientList
<T extends java.lang.Object & Client> ClientList<T> getClientList(javax.servlet.ServletRequest aRequest,
javax.servlet.ServletResponse aResponse)
throws ModelException
- Returns the portal client list.
- Parameters:
- aRequest - the current request
- aResponse - the current response
- Returns:
- the client list valid in the current request
- Throws:
- ModelException
getClientList
<T extends java.lang.Object & Client> ClientList<T> getClientList()
throws ModelException
- Returns the portal client list.
- Returns:
- the current client list of the portal
- Throws:
- ModelException