com.sun.enterprise.config.serverbeans
Interface ConnectionPool

All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy, org.jvnet.hk2.component.Injectable

Deprecated.

@Deprecated
public interface ConnectionPool
extends org.jvnet.hk2.config.ConfigBeanProxy, org.jvnet.hk2.component.Injectable


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
org.jvnet.hk2.config.ConfigBeanProxy.Duck
 
Method Summary
 String getMaxPendingCount()
          Deprecated. Gets the value of the maxPendingCount property.
 String getQueueSizeInBytes()
          Deprecated. Gets the value of the queueSizeInBytes property.
 String getReceiveBufferSizeInBytes()
          Deprecated. Gets the value of the receiveBufferSizeInBytes property.
 String getSendBufferSizeInBytes()
          Deprecated. Gets the value of the sendBufferSizeInBytes property.
 void setMaxPendingCount(String value)
          Deprecated. Sets the value of the maxPendingCount property.
 void setQueueSizeInBytes(String value)
          Deprecated. Sets the value of the queueSizeInBytes property.
 void setReceiveBufferSizeInBytes(String value)
          Deprecated. Sets the value of the receiveBufferSizeInBytes property.
 void setSendBufferSizeInBytes(String value)
          Deprecated. Sets the value of the sendBufferSizeInBytes property.
 
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
 
Methods inherited from interface org.jvnet.hk2.component.Injectable
injectedInto
 

Method Detail

getQueueSizeInBytes

@Min(value=0L)
@Max(value=2147483647L)
String getQueueSizeInBytes()
Deprecated. 
Gets the value of the queueSizeInBytes property. Size in bytes of the Connection queue

Returns:
possible object is String

setQueueSizeInBytes

void setQueueSizeInBytes(String value)
                         throws PropertyVetoException
Deprecated. 
Sets the value of the queueSizeInBytes property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getMaxPendingCount

@Min(value=1L)
@Max(value=2147483647L)
String getMaxPendingCount()
Deprecated. 
Gets the value of the maxPendingCount property. Max no of pending connections on the listen socket

Returns:
possible object is String

setMaxPendingCount

void setMaxPendingCount(String value)
                        throws PropertyVetoException
Deprecated. 
Sets the value of the maxPendingCount property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getReceiveBufferSizeInBytes

@Min(value=1L)
@Max(value=2147483647L)
String getReceiveBufferSizeInBytes()
Deprecated. 
Gets the value of the receiveBufferSizeInBytes property. The buffer size of the receive buffer used by sockets

Returns:
possible object is String

setReceiveBufferSizeInBytes

void setReceiveBufferSizeInBytes(String value)
                                 throws PropertyVetoException
Deprecated. 
Sets the value of the receiveBufferSizeInBytes property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getSendBufferSizeInBytes

@Min(value=1L)
@Max(value=2147483647L)
String getSendBufferSizeInBytes()
Deprecated. 
Gets the value of the sendBufferSizeInBytes property. The buffer size of the send buffer used by sockets

Returns:
possible object is String

setSendBufferSizeInBytes

void setSendBufferSizeInBytes(String value)
                              throws PropertyVetoException
Deprecated. 
Sets the value of the sendBufferSizeInBytes property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException


Copyright © 2012 GlassFish Community. All Rights Reserved.