blob: c4abe0833c851c07feff63640792dcf63b6bbf20 [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 ByteBuffer Object pool configuration.
* The xml is &lt;byte-buffer-object-pool&gt;...&lt;/byte-buffer-object-pool&gt;
* @author Akshathkumar Shetty
* @since 1.3
*/
public class ByteBufferObjectPoolConfig extends PoolConfig {
public ByteBufferObjectPoolConfig() {
super();
}
public ByteBufferObjectPoolConfig(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("<byte-buffer-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("</byte-buffer-object-pool>\n");
return sb.toString();
}
}