All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class bea.jolt.pool.PoolManagerConfig

java.lang.Object
   |
   +----bea.jolt.pool.PoolManagerConfig

public class PoolManagerConfig
extends Object
This class is the startup class for a Jolt Session Pool Manager and one or more associated Jolt Session Pools. It creates the session pool manager if needed and starts a session pool with a minimum number of sessions. Jolt Session Pool Manager that internally keeps track of one or more named session pools.

The startup parameters are:

poolname Session Pool Name
appaddrlist Application address list //host1:port1;//host2:port2
failoverlistFail-over address list
minpoolsize Number of initial sessions in the session pool
maxpoolsize Max number of sessions in the session pool
username BEA TUXEDO user name for the session pool
userpasswordBEA TUXEDO user password for the session pool
userrole BEA TUXEDO user role for the session pool
apppassword BEA TUXEDO application password for the session pool

Author:
Copyright (c) 1999 by BEA Systems, Inc. All Rights Reserved.

Variable Index

 o APPADDRLIST
 o APPPASSWORD
 o FAILOVERLIST
 o MAXPOOLSIZE
 o MINPOOLSIZE
 o POOLNAME
 o USERNAME
 o USERPASSWORD
 o USERROLE

Constructor Index

 o PoolManagerConfig()

Method Index

 o load(String)
It loads property file for a session pool.
 o shutdown(String)
It terminates a named session pool and closes sessions to a BEA TUXEDO system.

Variables

 o POOLNAME
 public static final String POOLNAME
 o APPADDRLIST
 public static final String APPADDRLIST
 o FAILOVERLIST
 public static final String FAILOVERLIST
 o MINPOOLSIZE
 public static final String MINPOOLSIZE
 o MAXPOOLSIZE
 public static final String MAXPOOLSIZE
 o USERNAME
 public static final String USERNAME
 o USERPASSWORD
 public static final String USERPASSWORD
 o USERROLE
 public static final String USERROLE
 o APPPASSWORD
 public static final String APPPASSWORD

Constructors

 o PoolManagerConfig
 public PoolManagerConfig()

Methods

 o shutdown
 public static String shutdown(String poolName)
It terminates a named session pool and closes sessions to a BEA TUXEDO system.

Parameters:
poolName - The session pool name which can be null.
Returns:
A shutdown message.
 o load
 public static Properties load(String path)
It loads property file for a session pool.

Parameters:
path - The property file path.
Returns:
the properties object, or null if there was an I/O error.

All Packages  Class Hierarchy  This Package  Previous  Next  Index