BEA Systems, Inc.

Type-Safe Access to BEA WebLogic Server 9.0 MBeans (Deprecated)

(Methods marked with @since 9.0.0.0 are not available through the deprecated MBeanHome interface.)


weblogic.management.configuration
Interface HTTPProxyMBean

All Superinterfaces:
ConfigurationMBean, DeploymentMBean, weblogic.descriptor.DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, weblogic.descriptor.SettableBean, weblogic.management.WebLogicMBean

public interface HTTPProxyMBean
extends DeploymentMBean

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/documentation/index.html.

Copyright (c) 2003 by BEA Systems, Inc. All Rights Reserved.

Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Field Summary
 
Fields inherited from interface weblogic.management.configuration.DeploymentMBean
DEFAULT_ORDER, MAX_ORDER, MIN_ORDER
 
Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
 
Method Summary
 int getHealthCheckInterval()
          The health check interval in milliseconds between pings.
 int getInitialConnections()
          The number of initial connections that should be opened to each server in the back end servers.
 int getMaxConnections()
          The maximum number of connections that each server can open to the back end servers.
 int getMaxHealthCheckInterval()
          The maximum interval between health checks.
 int getMaxRetries()
          The max retries after which the server will be marked dead.
 String getServerList()
          The list of servers in the back end that the HCS should proxy to.
 void setHealthCheckInterval(int intervalInMilliSeconds)
          Sets the value of the HealthCheckInterval attribute.
 void setInitialConnections(int initConnections)
          Sets the value of the InitialConnections attribute.
 void setMaxConnections(int maxConnections)
          Sets the value of the MaxConnections attribute.
 void setMaxHealthCheckInterval(int intervalInMillis)
          Sets value of the MaxHealthCheckInterval attribute.
 void setMaxRetries(int maxRetries)
          Sets the value of the MaxRetries attribute.
 void setServerList(String serverList)
          Sets the value of the ServerList attribute.
 
Methods inherited from interface weblogic.management.configuration.DeploymentMBean
addTarget, getDeploymentOrder, getTargets, removeTarget, setDeploymentOrder, setTargets
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getName, getNotes, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 
Methods inherited from interface weblogic.descriptor.DescriptorBean
addBeanUpdateListener, addPropertyChangeListener, createChildCopy, createChildCopyIncludingObsolete, getDescriptor, getParentBean, isEditable, removeBeanUpdateListener, removePropertyChangeListener
 

Method Detail

getHealthCheckInterval

public int getHealthCheckInterval()

The health check interval in milliseconds between pings.

Returns:
healthCheckInterval in milli seconds
Default value:
5

getInitialConnections

public int getInitialConnections()
The number of initial connections that should be opened to each server in the back end servers.

Returns:
Number of initial number of connections to each server in the backend.
Minimum value:
0
Maximum value:
65535
A dynamic MBean attribute.
false

getMaxConnections

public int getMaxConnections()

The maximum number of connections that each server can open to the back end servers.

Returns:
The maximum number of connections to be opened to each server in the backend servers.
Default value:
100
Maximum value:
65535
A dynamic MBean attribute.
false

getMaxHealthCheckInterval

public int getMaxHealthCheckInterval()

The maximum interval between health checks.

Returns:
Default value:
60

getMaxRetries

public int getMaxRetries()

The max retries after which the server will be marked dead.

Returns:
max retries.
Default value:
3
Maximum value:
200

getServerList

public String getServerList()

The list of servers in the back end that the HCS should proxy to.

A dynamic MBean attribute.

setHealthCheckInterval

public void setHealthCheckInterval(int intervalInMilliSeconds)

Sets the value of the HealthCheckInterval attribute.

Parameters:
intervalInMilliSeconds -
See Also:
getHealthCheckInterval()
Minimum value:
1
Maximum value:
300
A dynamic MBean attribute.

setInitialConnections

public void setInitialConnections(int initConnections)

Sets the value of the InitialConnections attribute.

Parameters:
initConnections -
See Also:
getInitialConnections()
Minimum value:
0
Maximum value:
65535
A dynamic MBean attribute.
false

setMaxConnections

public void setMaxConnections(int maxConnections)

Sets the value of the MaxConnections attribute.

Parameters:
maxConnections -
See Also:
getMaxConnections()
Minimum value:
1
Maximum value:
65535
A dynamic MBean attribute.
false

setMaxHealthCheckInterval

public void setMaxHealthCheckInterval(int intervalInMillis)

Sets value of the MaxHealthCheckInterval attribute.

Parameters:
intervalInMillis -
See Also:
getMaxHealthCheckInterval()

setMaxRetries

public void setMaxRetries(int maxRetries)

Sets the value of the MaxRetries attribute.

See Also:
getMaxRetries()
Maximum value:
25
A dynamic MBean attribute.

setServerList

public void setServerList(String serverList)

Sets the value of the ServerList attribute.

See Also:
getServerList()
A dynamic MBean attribute.

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs90
Copyright 2005 BEA Systems Inc.