com.sun.enterprise.config.serverbeans
Interface Orb

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

public interface Orb
extends org.jvnet.hk2.config.ConfigBeanProxy, org.jvnet.hk2.component.Injectable, org.jvnet.hk2.config.types.PropertyBag

Orb Configuration properties


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
org.jvnet.hk2.config.ConfigBeanProxy.Duck
 
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.types.PropertyBag
org.jvnet.hk2.config.types.PropertyBag.Duck
 
Method Summary
 String getMaxConnections()
          Gets the value of the maxConnections property.
 String getMessageFragmentSize()
          Gets the value of the messageFragmentSize property.
 List<org.jvnet.hk2.config.types.Property> getProperty()
          Properties as per PropertyBag
 String getUseThreadPoolIds()
          Gets the value of the useThreadPoolIds property.
 void setMaxConnections(String value)
          Sets the value of the maxConnections property.
 void setMessageFragmentSize(String value)
          Sets the value of the messageFragmentSize property.
 void setUseThreadPoolIds(String value)
          Sets the value of the useThreadPoolIds property.
 
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
 
Methods inherited from interface org.jvnet.hk2.component.Injectable
injectedInto
 
Methods inherited from interface org.jvnet.hk2.config.types.PropertyBag
getProperty, getPropertyValue, getPropertyValue
 

Method Detail

getUseThreadPoolIds

@NotNull
String getUseThreadPoolIds()
Gets the value of the useThreadPoolIds property. Specifies a comma-separated list of thread-pool ids. This would refer to the thread-pool-id(s) defined in the thread-pool sub-element of thread-pool-config element in domain.xml. These would be the threadpool(s) used by the ORB. More than one thread-pool-id(s) could be specified by using commas to separate the names e.g. orb-thread-pool-1, orb-thread-pool-2

Returns:
possible object is String

setUseThreadPoolIds

void setUseThreadPoolIds(String value)
                         throws PropertyVetoException
Sets the value of the useThreadPoolIds property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getMessageFragmentSize

@Min(value=128L)
String getMessageFragmentSize()
Gets the value of the messageFragmentSize property. GIOPv1.2 messages larger than this will get fragmented. Minimum value is 128.

Returns:
possible object is String

setMessageFragmentSize

void setMessageFragmentSize(String value)
                            throws PropertyVetoException
Sets the value of the messageFragmentSize property.

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getMaxConnections

@Min(value=0L)
String getMaxConnections()
Gets the value of the maxConnections property. Maximum number of incoming connections, on all listeners

Returns:
possible object is String

setMaxConnections

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

Parameters:
value - allowed object is String
Throws:
PropertyVetoException

getProperty

@ToDo(priority=IMPORTANT,
      details="Provide PropertyDesc for legal props")
@PropertiesDesc(props={})
List<org.jvnet.hk2.config.types.Property> getProperty()
Properties as per PropertyBag

Specified by:
getProperty in interface org.jvnet.hk2.config.types.PropertyBag


Copyright © 2012 GlassFish Community. All Rights Reserved.