Package org.glassfish.orb.admin.config
Interface Orb
-
- All Superinterfaces:
ConfigBeanProxy,PropertyBag
public interface Orb extends ConfigBeanProxy, PropertyBag
Orb Configuration properties
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.types.PropertyBag
PropertyBag.Duck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Min(0L) StringgetMaxConnections()Gets the value of the maxConnections property.@Min(128L) StringgetMessageFragmentSize()Gets the value of the messageFragmentSize property.List<Property>getProperty()Properties as perPropertyBag@NotNull StringgetUseThreadPoolIds()Gets the value of the useThreadPoolIds property.voidsetMaxConnections(String value)Sets the value of the maxConnections property.voidsetMessageFragmentSize(String value)Sets the value of the messageFragmentSize property.voidsetUseThreadPoolIds(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.config.types.PropertyBag
addProperty, getProperty, getPropertyValue, getPropertyValue, lookupProperty, removeProperty, removeProperty
-
-
-
-
Method Detail
-
getUseThreadPoolIds
@NotNull @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 isString- Throws:
PropertyVetoException
-
getMessageFragmentSize
@Min(128L) @Min(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 isString- Throws:
PropertyVetoException
-
getMaxConnections
@Min(0L) @Min(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 isString- Throws:
PropertyVetoException
-
getProperty
@ToDo(priority=IMPORTANT, details="Provide PropertyDesc for legal props") @PropertiesDesc(props={}) List<Property> getProperty()
Properties as perPropertyBag- Specified by:
getPropertyin interfacePropertyBag- Returns:
- the property list
-
-