com.wrq.vhi.sconfig
Interface ISessionPoolBrowser


public interface ISessionPoolBrowser

Interface class for obtaining information about session pools defined on a VHI server. Use the ServerConfig.newSessionPoolBrowser() methods to create instances of this interface.


Method Summary
 SessionPool getSessionPool(java.lang.String sessionPoolName)
          Return information about a specific session pool.
 java.util.List getSessionPoolNames()
          Return a list of the names of session pools defined on a VHI server, obtained from a call to the readConfiguration() method.
 java.util.List readConfiguration()
          Read session pool information from a VHI server.
 

Method Detail

readConfiguration

java.util.List readConfiguration()
Read session pool information from a VHI server.

Returns:
List of SCStatus container objects detailing errors, or null of the operation has fully succeeded.

getSessionPoolNames

java.util.List getSessionPoolNames()
Return a list of the names of session pools defined on a VHI server, obtained from a call to the readConfiguration() method.

Returns:
List of session pool name strings.

getSessionPool

SessionPool getSessionPool(java.lang.String sessionPoolName)
Return information about a specific session pool.

Parameters:
sessionPoolName - Name of the session pool for which information is to be obtained.
Returns:
Session pool information, or null if the session pool is not found.