Closeable
, Serializable
, AutoCloseable
, Remote
, RMIConnection
public final class RMIConnectionImpl_Stub extends RemoteStub implements RMIConnection
ref
Constructor | Description |
---|---|
RMIConnectionImpl_Stub |
Constructor. |
Modifier and Type | Method | Description |
---|---|---|
void |
addNotificationListener |
|
Integer[] |
addNotificationListeners |
|
void |
close() |
Closes this connection. |
ObjectInstance |
createMBean |
Handles the method MBeanServerConnection.createMBean(String, ObjectName, Object[], String[]) . |
ObjectInstance |
createMBean |
|
ObjectInstance |
createMBean |
Handles the method MBeanServerConnection.createMBean(String, ObjectName, ObjectName) . |
ObjectInstance |
createMBean |
Handles the method MBeanServerConnection.createMBean(String, ObjectName) . |
NotificationResult |
fetchNotifications |
Retrieves notifications from the connector server. |
Object |
getAttribute |
Handles the method MBeanServerConnection.getAttribute(ObjectName, String) . |
AttributeList |
getAttributes |
Handles the method MBeanServerConnection.getAttributes(ObjectName, String[]) . |
String |
getConnectionId() |
Returns the connection ID. |
String |
getDefaultDomain |
Handles the method MBeanServerConnection.getDefaultDomain() . |
String[] |
getDomains |
Handles the method MBeanServerConnection.getDomains() . |
Integer |
getMBeanCount |
Handles the method MBeanServerConnection.getMBeanCount() . |
MBeanInfo |
getMBeanInfo |
Handles the method MBeanServerConnection.getMBeanInfo(ObjectName) . |
ObjectInstance |
getObjectInstance |
Handles the method MBeanServerConnection.getObjectInstance(ObjectName) . |
Object |
invoke |
Handles the method MBeanServerConnection.invoke(ObjectName, String, Object[], String[]) . |
boolean |
isInstanceOf |
Handles the method MBeanServerConnection.isInstanceOf(ObjectName, String) . |
boolean |
isRegistered |
Handles the method MBeanServerConnection.isRegistered(ObjectName) . |
Set |
queryMBeans |
Handles the method MBeanServerConnection.queryMBeans(ObjectName, QueryExp) . |
Set |
queryNames |
Handles the method MBeanServerConnection.queryNames(ObjectName, QueryExp) . |
void |
removeNotificationListener |
|
void |
removeNotificationListener |
Handles the method MBeanServerConnection.removeNotificationListener(ObjectName, ObjectName) . |
void |
removeNotificationListeners |
|
void |
setAttribute |
Handles the method MBeanServerConnection.setAttribute(ObjectName, Attribute) . |
AttributeList |
setAttributes |
Handles the method MBeanServerConnection.setAttributes(ObjectName, AttributeList) . |
void |
unregisterMBean |
Handles the method MBeanServerConnection.unregisterMBean(ObjectName) . |
setRef
public RMIConnectionImpl_Stub(RemoteRef ref)
ref
- a remote refpublic void addNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, MarshalledObject $param_MarshalledObject_4, Subject $param_Subject_5) throws IOException, InstanceNotFoundException
RMIConnection
MBeanServerConnection.addNotificationListener(ObjectName, ObjectName, NotificationFilter, Object)
. The NotificationFilter
parameter is wrapped in a MarshalledObject
. The Object
(handback) parameter is also wrapped in a MarshalledObject
.addNotificationListener
in interface RMIConnection
$param_ObjectName_1
- The name of the MBean on which the listener should be added.$param_ObjectName_2
- The object name of the listener which will handle the notifications emitted by the registered MBean.$param_MarshalledObject_3
- The filter object, encapsulated into a MarshalledObject
. If filter encapsulated in the MarshalledObject
has a null value, no filtering will be performed before handling notifications.$param_MarshalledObject_4
- The context to be sent to the listener when a notification is emitted, encapsulated into a MarshalledObject
.$param_Subject_5
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean name of the notification listener or of the notification broadcaster does not match any of the registered MBeans.public Integer[] addNotificationListeners(ObjectName[] $param_arrayOf_ObjectName_1, MarshalledObject[] $param_arrayOf_MarshalledObject_2, Subject[] $param_arrayOf_Subject_3) throws IOException, InstanceNotFoundException
RMIConnection
Handles the method MBeanServerConnection.addNotificationListener(ObjectName, NotificationListener, NotificationFilter, Object)
.
Register for notifications from the given MBeans that match the given filters. The remote client can subsequently retrieve the notifications using the fetchNotifications
method.
For each listener, the original NotificationListener
and handback
are kept on the client side; in order for the client to be able to identify them, the server generates and returns a unique listenerID
. This listenerID
is forwarded with the Notifications
to the remote client.
If any one of the given (name, filter) pairs cannot be registered, then the operation fails with an exception, and no names or filters are registered.
addNotificationListeners
in interface RMIConnection
$param_arrayOf_ObjectName_1
- the ObjectNames
identifying the MBeans emitting the Notifications.$param_arrayOf_MarshalledObject_2
- an array of marshalled representations of the NotificationFilters
. Elements of this array can be null.$param_arrayOf_Subject_3
- the Subjects
on behalf of which the listeners are being added. Elements of this array can be null. Also, the delegationSubjects
parameter itself can be null, which is equivalent to an array of null values with the same size as the names
and filters
arrays.listenerIDs
identifying the local listeners. This array has the same number of elements as the parameters.IOException
- if a general communication exception occurred.InstanceNotFoundException
- if one of the names
does not correspond to any registered MBean.public void close() throws IOException
RMIConnection
Closes this connection. On return from this method, the RMI object implementing this interface is unexported, so further remote calls to it will fail.
close
in interface AutoCloseable
close
in interface Closeable
close
in interface RMIConnection
IOException
- if the connection could not be closed, or the Remote object could not be unexported, or there was a communication failure when transmitting the remote close request.public ObjectInstance createMBean(String $param_String_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5) throws IOException, InstanceAlreadyExistsException, MBeanException, MBeanRegistrationException, NotCompliantMBeanException, ReflectionException
RMIConnection
MBeanServerConnection.createMBean(String, ObjectName, Object[], String[])
. The Object[]
parameter is wrapped in a MarshalledObject
.createMBean
in interface RMIConnection
$param_String_1
- The class name of the MBean to be instantiated.$param_ObjectName_2
- The object name of the MBean. May be null.$param_MarshalledObject_3
- An array containing the parameters of the constructor to be invoked, encapsulated into a MarshalledObject
. The encapsulated array can be null, equivalent to an empty array.$param_arrayOf_String_4
- An array containing the signature of the constructor to be invoked. Can be null, equivalent to an empty array.$param_Subject_5
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
, containing the ObjectName
and the Java class name of the newly instantiated MBean. If the contained ObjectName
is n
, the contained Java class name is getMBeanInfo(n)
.getClassName()
.IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.MBeanException
- The constructor of the MBean has thrown an exception.MBeanRegistrationException
- The preRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps a java.lang.ClassNotFoundException
or a java.lang.Exception
that occurred when trying to invoke the MBean's constructor.public ObjectInstance createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, MarshalledObject $param_MarshalledObject_4, String[] $param_arrayOf_String_5, Subject $param_Subject_6) throws IOException, InstanceAlreadyExistsException, InstanceNotFoundException, MBeanException, MBeanRegistrationException, NotCompliantMBeanException, ReflectionException
RMIConnection
MBeanServerConnection.createMBean(String, ObjectName, ObjectName, Object[], String[])
. The Object[]
parameter is wrapped in a MarshalledObject
.createMBean
in interface RMIConnection
$param_String_1
- The class name of the MBean to be instantiated.$param_ObjectName_2
- The object name of the MBean. May be null.$param_ObjectName_3
- The object name of the class loader to be used.$param_MarshalledObject_4
- An array containing the parameters of the constructor to be invoked, encapsulated into a MarshalledObject
. The encapsulated array can be null, equivalent to an empty array.$param_arrayOf_String_5
- An array containing the signature of the constructor to be invoked. Can be null, equivalent to an empty array.$param_Subject_6
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
, containing the ObjectName
and the Java class name of the newly instantiated MBean. If the contained ObjectName
is n
, the contained Java class name is getMBeanInfo(n)
.getClassName()
.IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.InstanceNotFoundException
- The specified class loader is not registered in the MBean server.MBeanException
- The constructor of the MBean has thrown an exception.MBeanRegistrationException
- The preRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps a java.lang.ClassNotFoundException
or a java.lang.Exception
that occurred when trying to invoke the MBean's constructor.public ObjectInstance createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, Subject $param_Subject_4) throws IOException, InstanceAlreadyExistsException, InstanceNotFoundException, MBeanException, MBeanRegistrationException, NotCompliantMBeanException, ReflectionException
RMIConnection
MBeanServerConnection.createMBean(String, ObjectName, ObjectName)
.createMBean
in interface RMIConnection
$param_String_1
- The class name of the MBean to be instantiated.$param_ObjectName_2
- The object name of the MBean. May be null.$param_ObjectName_3
- The object name of the class loader to be used.$param_Subject_4
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
, containing the ObjectName
and the Java class name of the newly instantiated MBean. If the contained ObjectName
is n
, the contained Java class name is getMBeanInfo(n)
.getClassName()
.IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.InstanceNotFoundException
- The specified class loader is not registered in the MBean server.MBeanException
- The constructor of the MBean has thrown an exception.MBeanRegistrationException
- The preRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps a java.lang.ClassNotFoundException
or a java.lang.Exception
that occurred when trying to invoke the MBean's constructor.public ObjectInstance createMBean(String $param_String_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3) throws IOException, InstanceAlreadyExistsException, MBeanException, MBeanRegistrationException, NotCompliantMBeanException, ReflectionException
RMIConnection
MBeanServerConnection.createMBean(String, ObjectName)
.createMBean
in interface RMIConnection
$param_String_1
- The class name of the MBean to be instantiated.$param_ObjectName_2
- The object name of the MBean. May be null.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
, containing the ObjectName
and the Java class name of the newly instantiated MBean. If the contained ObjectName
is n
, the contained Java class name is getMBeanInfo(n)
.getClassName()
.IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.MBeanException
- The constructor of the MBean has thrown an exception.MBeanRegistrationException
- The preRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps a java.lang.ClassNotFoundException
or a java.lang.Exception
that occurred when trying to invoke the MBean's constructor.public NotificationResult fetchNotifications(long $param_long_1, int $param_int_2, long $param_long_3) throws IOException
RMIConnection
Retrieves notifications from the connector server. This method can block until there is at least one notification or until the specified timeout is reached. The method can also return at any time with zero notifications.
A notification can be included in the result if its sequence number is no less than clientSequenceNumber
and this client has registered at least one listener for the MBean generating the notification, with a filter that accepts the notification. Each listener that is interested in the notification is identified by an Integer ID that was returned by RMIConnection.addNotificationListeners(ObjectName[], MarshalledObject[], Subject[])
.
fetchNotifications
in interface RMIConnection
$param_long_1
- the first sequence number that the client is interested in. If negative, it is interpreted as meaning the sequence number that the next notification will have.$param_int_2
- the maximum number of different notifications to return. The TargetedNotification
array in the returned NotificationResult
can have more elements than this if the same notification appears more than once. The behavior is unspecified if this parameter is negative.$param_long_3
- the maximum time in milliseconds to wait for a notification to arrive. This can be 0 to indicate that the method should not wait if there are no notifications, but should return at once. It can be Long.MAX_VALUE
to indicate that there is no timeout. The behavior is unspecified if this parameter is negative.NotificationResult
.IOException
- if a general communication exception occurred.public Object getAttribute(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3) throws IOException, AttributeNotFoundException, InstanceNotFoundException, MBeanException, ReflectionException
RMIConnection
MBeanServerConnection.getAttribute(ObjectName, String)
.getAttribute
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean from which the attribute is to be retrieved.$param_String_2
- A String specifying the name of the attribute to be retrieved.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.AttributeNotFoundException
- The attribute specified is not accessible in the MBean.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.MBeanException
- Wraps an exception thrown by the MBean's getter.ReflectionException
- Wraps a java.lang.Exception
thrown when trying to invoke the getter.public AttributeList getAttributes(ObjectName $param_ObjectName_1, String[] $param_arrayOf_String_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ReflectionException
RMIConnection
MBeanServerConnection.getAttributes(ObjectName, String[])
.getAttributes
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean from which the attributes are retrieved.$param_arrayOf_String_2
- A list of the attributes to be retrieved.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.ReflectionException
- An exception occurred when trying to invoke the getAttributes method of a Dynamic MBean.public String getConnectionId() throws IOException
RMIConnection
Returns the connection ID. This string is different for every open connection to a given RMI connector server.
getConnectionId
in interface RMIConnection
IOException
- if a general communication exception occurred.public String getDefaultDomain(Subject $param_Subject_1) throws IOException
RMIConnection
MBeanServerConnection.getDefaultDomain()
.getDefaultDomain
in interface RMIConnection
$param_Subject_1
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.public String[] getDomains(Subject $param_Subject_1) throws IOException
RMIConnection
MBeanServerConnection.getDomains()
.getDomains
in interface RMIConnection
$param_Subject_1
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.public Integer getMBeanCount(Subject $param_Subject_1) throws IOException
RMIConnection
MBeanServerConnection.getMBeanCount()
.getMBeanCount
in interface RMIConnection
$param_Subject_1
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.public MBeanInfo getMBeanInfo(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException, IntrospectionException, ReflectionException
RMIConnection
MBeanServerConnection.getMBeanInfo(ObjectName)
.getMBeanInfo
in interface RMIConnection
$param_ObjectName_1
- The name of the MBean to analyze$param_Subject_2
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.MBeanInfo
allowing the retrieval of all attributes and operations of this MBean.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified was not found.IntrospectionException
- An exception occurred during introspection.ReflectionException
- An exception occurred when trying to invoke the getMBeanInfo of a Dynamic MBean.public ObjectInstance getObjectInstance(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException
RMIConnection
MBeanServerConnection.getObjectInstance(ObjectName)
.getObjectInstance
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean.$param_Subject_2
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
associated with the MBean specified by name. The contained ObjectName
is name
and the contained class name is getMBeanInfo(name)
.getClassName()
.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.public Object invoke(ObjectName $param_ObjectName_1, String $param_String_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5) throws IOException, InstanceNotFoundException, MBeanException, ReflectionException
RMIConnection
MBeanServerConnection.invoke(ObjectName, String, Object[], String[])
. The Object[]
parameter is wrapped in a MarshalledObject
.invoke
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean on which the method is to be invoked.$param_String_2
- The name of the operation to be invoked.$param_MarshalledObject_3
- An array containing the parameters to be set when the operation is invoked, encapsulated into a MarshalledObject
. The encapsulated array can be null, equivalent to an empty array.$param_arrayOf_String_4
- An array containing the signature of the operation. The class objects will be loaded using the same class loader as the one used for loading the MBean on which the operation was invoked. Can be null, equivalent to an empty array.$param_Subject_5
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.MBeanException
- Wraps an exception thrown by the MBean's invoked method.ReflectionException
- Wraps a java.lang.Exception
thrown while trying to invoke the method.public boolean isInstanceOf(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException
RMIConnection
MBeanServerConnection.isInstanceOf(ObjectName, String)
.isInstanceOf
in interface RMIConnection
$param_ObjectName_1
- The ObjectName
of the MBean.$param_String_2
- The name of the class.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.public boolean isRegistered(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException
RMIConnection
MBeanServerConnection.isRegistered(ObjectName)
.isRegistered
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean to be checked.$param_Subject_2
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.public Set queryMBeans(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException
RMIConnection
MBeanServerConnection.queryMBeans(ObjectName, QueryExp)
. The QueryExp
is wrapped in a MarshalledObject
.queryMBeans
in interface RMIConnection
$param_ObjectName_1
- The object name pattern identifying the MBeans to be retrieved. If null or no domain and key properties are specified, all the MBeans registered will be retrieved.$param_MarshalledObject_2
- The query expression to be applied for selecting MBeans, encapsulated into a MarshalledObject
. If the MarshalledObject
encapsulates a null value no query expression will be applied for selecting MBeans.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.ObjectInstance
objects for the selected MBeans. If no MBean satisfies the query an empty list is returned.IOException
- if a general communication exception occurred.public Set queryNames(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException
RMIConnection
MBeanServerConnection.queryNames(ObjectName, QueryExp)
. The QueryExp
is wrapped in a MarshalledObject
.queryNames
in interface RMIConnection
$param_ObjectName_1
- The object name pattern identifying the MBean names to be retrieved. If null or no domain and key properties are specified, the name of all registered MBeans will be retrieved.$param_MarshalledObject_2
- The query expression to be applied for selecting MBeans, encapsulated into a MarshalledObject
. If the MarshalledObject
encapsulates a null value no query expression will be applied for selecting MBeans.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.public void removeNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, MarshalledObject $param_MarshalledObject_4, Subject $param_Subject_5) throws IOException, InstanceNotFoundException, ListenerNotFoundException
RMIConnection
MBeanServerConnection.removeNotificationListener(ObjectName, ObjectName, NotificationFilter, Object)
. The NotificationFilter
parameter is wrapped in a MarshalledObject
. The Object
parameter is also wrapped in a MarshalledObject
.removeNotificationListener
in interface RMIConnection
$param_ObjectName_1
- The name of the MBean on which the listener should be removed.$param_ObjectName_2
- A listener that was previously added to this MBean.$param_MarshalledObject_3
- The filter that was specified when the listener was added, encapsulated into a MarshalledObject
.$param_MarshalledObject_4
- The handback that was specified when the listener was added, encapsulated into a MarshalledObject
.$param_Subject_5
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean name provided does not match any of the registered MBeans.ListenerNotFoundException
- The listener is not registered in the MBean, or it is not registered with the given filter and handback.public void removeNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ListenerNotFoundException
RMIConnection
MBeanServerConnection.removeNotificationListener(ObjectName, ObjectName)
.removeNotificationListener
in interface RMIConnection
$param_ObjectName_1
- The name of the MBean on which the listener should be removed.$param_ObjectName_2
- The object name of the listener to be removed.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean name provided does not match any of the registered MBeans.ListenerNotFoundException
- The listener is not registered in the MBean.public void removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ListenerNotFoundException
RMIConnection
Handles the removeNotificationListener(ObjectName, NotificationListener)
and removeNotificationListener(ObjectName, NotificationListener, NotificationFilter, Object)
methods.
This method removes one or more NotificationListener
s from a given MBean in the MBean server.
The NotificationListeners
are identified by the IDs which were returned by the RMIConnection.addNotificationListeners(ObjectName[], MarshalledObject[], Subject[])
method.
removeNotificationListeners
in interface RMIConnection
$param_ObjectName_1
- the ObjectName
identifying the MBean emitting the Notifications.$param_arrayOf_Integer_2
- the list of the IDs corresponding to the listeners to remove.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- if the given name
does not correspond to any registered MBean.ListenerNotFoundException
- if one of the listeners was not found on the server side. This exception can happen if the MBean discarded a listener for some reason other than a call to MBeanServer.removeNotificationListener
.public void setAttribute(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException, AttributeNotFoundException, InstanceNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
RMIConnection
MBeanServerConnection.setAttribute(ObjectName, Attribute)
. The Attribute
parameter is wrapped in a MarshalledObject
.setAttribute
in interface RMIConnection
$param_ObjectName_1
- The name of the MBean within which the attribute is to be set.$param_MarshalledObject_2
- The identification of the attribute to be set and the value it is to be set to, encapsulated into a MarshalledObject
.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.AttributeNotFoundException
- The attribute specified is not accessible in the MBean.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.InvalidAttributeValueException
- The value specified for the attribute is not valid.MBeanException
- Wraps an exception thrown by the MBean's setter.ReflectionException
- Wraps a java.lang.Exception
thrown when trying to invoke the setter.public AttributeList setAttributes(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ReflectionException
RMIConnection
MBeanServerConnection.setAttributes(ObjectName, AttributeList)
. The AttributeList
parameter is wrapped in a MarshalledObject
.setAttributes
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean within which the attributes are to be set.$param_MarshalledObject_2
- A list of attributes: The identification of the attributes to be set and the values they are to be set to, encapsulated into a MarshalledObject
.$param_Subject_3
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.ReflectionException
- An exception occurred when trying to invoke the getAttributes method of a Dynamic MBean.public void unregisterMBean(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException, MBeanRegistrationException
RMIConnection
MBeanServerConnection.unregisterMBean(ObjectName)
.unregisterMBean
in interface RMIConnection
$param_ObjectName_1
- The object name of the MBean to be unregistered.$param_Subject_2
- The Subject
containing the delegation principals or null
if the authentication principal is used instead.IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.MBeanRegistrationException
- The preDeregister (MBeanRegistration
interface) method of the MBean has thrown an exception.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.management.rmi/javax/management/remote/rmi/RMIConnectionImpl_Stub.html