blob: 180140eadff2e6fcc8655e83081bdafd4e2c40c7 [file] [log] [blame]
/*
* This file is part of the QuickServer library
* Copyright (C) QuickServer.org
*
* Use, modification, copying and distribution of this software is subject to
* the terms and conditions of the GNU Lesser General Public License.
* You should have received a copy of the GNU LGP License along with this
* library; if not, you can download a copy from <http://www.quickserver.org/>.
*
* For questions, suggestions, bug-reports, enhancement-requests etc.
* visit http://www.quickserver.org
*
*/
package org.quickserver.util.xmlreader;
/**
* This class encapsulate the ClientHandler Object pool configuration.
* The xml is &lt;client-handler-object-pool&gt;...&lt;/client-handler-object-pool&gt;
* @author Akshathkumar Shetty
*/
public class ClientHandlerObjectPoolConfig extends PoolConfig {
public ClientHandlerObjectPoolConfig() {
super();
}
public ClientHandlerObjectPoolConfig(PoolConfig poolConfig) {
setMaxActive(poolConfig.getMaxActive());
setMaxIdle(poolConfig.getMaxIdle());
setInitSize(poolConfig.getInitSize());
}
/**
* Returns XML config of this class.
*/
public String toXML(String pad) {
if(pad==null) pad="";
StringBuilder sb = new StringBuilder();
sb.append(pad).append("<client-handler-object-pool>\n");
sb.append(pad).append("\t<max-active>").append(getMaxActive()).append("</max-active>\n");
sb.append(pad).append("\t<max-idle>").append(getMaxIdle()).append("</max-idle>\n");
sb.append(pad).append("\t<init-size>").append(getInitSize()).append("</init-size>\n");
sb.append(pad).append("</client-handler-object-pool>\n");
return sb.toString();
}
}