*/
// Mutiplied the idleTimeoutInSeconds by 1000 to convert to milliseconds
ThreadPoolFactory threadPoolFactory = new ThreadPoolFactory();
ThreadPool threadpool =
threadPoolFactory.create(minThreads, maxThreads,
idleTimeoutInSeconds * 1000, threadpoolId,
_iiopUtils.getCommonClassLoader());
// Add the threadpool instance to the threadpoolList
threadpoolList.add(threadpool);