1 /*
2 * Licensed under the GPL License. You may not use this file except in compliance with the License.
3 * You may obtain a copy of the License at
4 *
5 * https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
6 *
7 * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
8 * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
9 * PURPOSE.
10 */
11 package psiprobe.model.jmx;
12
13 /**
14 * The Class PooledClusterSender.
15 */
16 public class PooledClusterSender extends ClusterSender {
17
18 /** The max pool socket limit. */
19 private int maxPoolSocketLimit;
20
21 /**
22 * Gets the max pool socket limit.
23 *
24 * @return the max pool socket limit
25 */
26 public int getMaxPoolSocketLimit() {
27 return maxPoolSocketLimit;
28 }
29
30 /**
31 * Sets the max pool socket limit.
32 *
33 * @param maxPoolSocketLimit the new max pool socket limit
34 */
35 public void setMaxPoolSocketLimit(int maxPoolSocketLimit) {
36 this.maxPoolSocketLimit = maxPoolSocketLimit;
37 }
38
39 }