Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.configuration
Interface CoherenceManagementJMXAddressMBean

All Superinterfaces:
ConfigurationMBean, DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, SettableBean, WebLogicMBean

public interface CoherenceManagementJMXAddressMBean
extends ConfigurationMBean

This class holds the JMX connection information needed to connect to a management server.


Field Summary
 
Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
 
Method Summary
 String getAddress()
          The IP address/Host
 int getConnectionPort()
          Get the JMX RMI connection port
 byte[] getEncryptedPassword()
          Get JMX connection encrypted password
 String getPassword()
          Get JMX connection password
 int getRegistryPort()
          Get the JMX RMI registry port
 String getUsername()
          Get the JMX connection username
 void setAddress(String address)
          Set the IP address/Host
 void setConnectionPort(int port)
          Set the JMX RMI connection port
 void setEncryptedPassword(byte[] bytes)
          Set the JMX encrypted password
 void setPassword(String password)
          Set the JMX password
 void setRegistryPort(int port)
          Set the JMX RMI registry port
 void setUsername(String username)
          Set the JMX username
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, 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
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
 

Method Detail

getAddress

String getAddress()
The IP address/Host

Returns:
address of JMX Management host

setAddress

void setAddress(String address)
Set the IP address/Host

Parameters:
address - of JMX management host

getRegistryPort

int getRegistryPort()
Get the JMX RMI registry port

Returns:
JMX RMI registry port

setRegistryPort

void setRegistryPort(int port)
Set the JMX RMI registry port

Parameters:
port - RMS registry port
Default Value:
9000
Maximum Value:
65535
Minimum Value:
1

getConnectionPort

int getConnectionPort()
Get the JMX RMI connection port

Returns:
JMX RMI connection port

setConnectionPort

void setConnectionPort(int port)
Set the JMX RMI connection port

Parameters:
port - JMX RMI connection port
Default Value:
3000
Maximum Value:
65535
Minimum Value:
1

getUsername

String getUsername()
Get the JMX connection username

Returns:
JMX username

setUsername

void setUsername(String username)
Set the JMX username

Parameters:
username -

getPassword

String getPassword()
Get JMX connection password

Returns:
JMX password
See Also:
CoherenceManagementJMXAddressMBean.getEncryptedPassword()

setPassword

void setPassword(String password)
                 throws InvalidAttributeValueException
Set the JMX password

Parameters:
password -
Throws:
InvalidAttributeValueException
See Also:
CoherenceManagementJMXAddressMBean.getPassword(), CoherenceManagementJMXAddressMBean.setEncryptedPassword(byte[])

getEncryptedPassword

byte[] getEncryptedPassword()
Get JMX connection encrypted password

Returns:
JMX encrypted password
Default Value:
null

setEncryptedPassword

void setEncryptedPassword(byte[] bytes)
                          throws InvalidAttributeValueException
Set the JMX encrypted password

Parameters:
bytes - The new password value
Throws:
InvalidAttributeValueException
See Also:
CoherenceManagementJMXAddressMBean.getEncryptedPassword()

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02