KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > impl > config > ObjectPool


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.portletcontainer.impl.config;
6
7 /**
8  * Jul 7, 2004
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: ObjectPool.java,v 1.1 2004/07/08 19:11:45 tuan08 Exp $
12  */

13 public class ObjectPool {
14     private int instancesInPool ;
15     
16     public int getInstancesInPool() {
17         return instancesInPool;
18     }
19     public void setInstancesInPool(int instanceInPool) {
20         this.instancesInPool = instanceInPool;
21     }
22 }
23
Popular Tags