com.sun.enterprise.config.serverbeans
Interface KeepAlive

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

Deprecated.

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

Keep-alive subsystem configuration


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
org.jvnet.hk2.config.ConfigBeanProxy.Duck
 
Method Summary
 String getMaxConnections()
          Deprecated. Gets the value of the maxConnections property.
 String getThreadCount()
          Deprecated. Gets the value of the threadCount property.
 String getTimeoutInSeconds()
          Deprecated. Gets the value of the timeoutInSeconds property.
 void setMaxConnections(String value)
          Deprecated. Sets the value of the maxConnections property.
 void setThreadCount(String value)
          Deprecated. Sets the value of the threadCount property.
 void setTimeoutInSeconds(String value)
          Deprecated. Sets the value of the timeoutInSeconds 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

getThreadCount

@Min(value=1L)
@Max(value=2147483647L)
String getThreadCount()
Deprecated. 
Gets the value of the threadCount property. Number of Keep Alive threads in the system

Returns:
possible object is String

setThreadCount

void setThreadCount(String value)
                    throws PropertyVetoException
Deprecated. 
Sets the value of the threadCount property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getMaxConnections

@Min(value=1L)
@Max(value=2147483647L)
String getMaxConnections()
Deprecated. 
Gets the value of the maxConnections property. Max no of connection in the Keep Alive mode

Returns:
possible object is String

setMaxConnections

void setMaxConnections(String value)
                       throws PropertyVetoException
Deprecated. 
Sets the value of the maxConnections property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getTimeoutInSeconds

@Min(value=0L)
@Max(value=2147483647L)
String getTimeoutInSeconds()
Deprecated. 
Gets the value of the timeoutInSeconds property. Keep Alive timeout , max time a connection can be deemed as idle and kept in the keep-alive state

Returns:
possible object is String

setTimeoutInSeconds

void setTimeoutInSeconds(String value)
                         throws PropertyVetoException
Deprecated. 
Sets the value of the timeoutInSeconds property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException


Copyright © 2012 GlassFish Community. All Rights Reserved.