- java.lang.Object
-
- java.rmi.server.RemoteObject
-
- java.rmi.server.RemoteStub
-
- javax.management.remote.rmi.RMIConnectionImpl_Stub
-
- All Implemented Interfaces:
- Closeable, Serializable, AutoCloseable, Remote, RMIConnection
public final class RMIConnectionImpl_Stub extends RemoteStub implements RMIConnection
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.rmi.server.RemoteObject
ref
-
-
Constructor Summary
Constructors Constructor and Description RMIConnectionImpl_Stub(RemoteRef ref)
-
Method Summary
Methods Modifier and Type Method and Description void
addNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, MarshalledObject $param_MarshalledObject_4, Subject $param_Subject_5)
Integer[]
addNotificationListeners(ObjectName[] $param_arrayOf_ObjectName_1, MarshalledObject[] $param_arrayOf_MarshalledObject_2, Subject[] $param_arrayOf_Subject_3)
void
close()
Closes this connection.ObjectInstance
createMBean(String $param_String_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, Object[], String[])
.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)
ObjectInstance
createMBean(String $param_String_1, ObjectName $param_ObjectName_2, ObjectName $param_ObjectName_3, Subject $param_Subject_4)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, ObjectName)
.ObjectInstance
createMBean(String $param_String_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.createMBean(String, ObjectName)
.NotificationResult
fetchNotifications(long $param_long_1, int $param_int_2, long $param_long_3)
Retrieves notifications from the connector server.Object
getAttribute(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.getAttribute(ObjectName, String)
.AttributeList
getAttributes(ObjectName $param_ObjectName_1, String[] $param_arrayOf_String_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.getAttributes(ObjectName, String[])
.String
getConnectionId()
Returns the connection ID.String
getDefaultDomain(Subject $param_Subject_1)
Handles the methodMBeanServerConnection.getDefaultDomain()
.String[]
getDomains(Subject $param_Subject_1)
Handles the methodMBeanServerConnection.getDomains()
.Integer
getMBeanCount(Subject $param_Subject_1)
Handles the methodMBeanServerConnection.getMBeanCount()
.MBeanInfo
getMBeanInfo(ObjectName $param_ObjectName_1, Subject $param_Subject_2)
Handles the methodMBeanServerConnection.getMBeanInfo(ObjectName)
.ObjectInstance
getObjectInstance(ObjectName $param_ObjectName_1, Subject $param_Subject_2)
Handles the methodMBeanServerConnection.getObjectInstance(ObjectName)
.Object
invoke(ObjectName $param_ObjectName_1, String $param_String_2, MarshalledObject $param_MarshalledObject_3, String[] $param_arrayOf_String_4, Subject $param_Subject_5)
Handles the methodMBeanServerConnection.invoke(ObjectName, String, Object[], String[])
.boolean
isInstanceOf(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.isInstanceOf(ObjectName, String)
.boolean
isRegistered(ObjectName $param_ObjectName_1, Subject $param_Subject_2)
Handles the methodMBeanServerConnection.isRegistered(ObjectName)
.Set
queryMBeans(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.queryMBeans(ObjectName, QueryExp)
.Set
queryNames(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.queryNames(ObjectName, QueryExp)
.void
removeNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, MarshalledObject $param_MarshalledObject_3, MarshalledObject $param_MarshalledObject_4, Subject $param_Subject_5)
void
removeNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.removeNotificationListener(ObjectName, ObjectName)
.void
removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3)
void
setAttribute(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.setAttribute(ObjectName, Attribute)
.AttributeList
setAttributes(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3)
Handles the methodMBeanServerConnection.setAttributes(ObjectName, AttributeList)
.void
unregisterMBean(ObjectName $param_ObjectName_1, Subject $param_Subject_2)
Handles the methodMBeanServerConnection.unregisterMBean(ObjectName)
.-
Methods inherited from class java.rmi.server.RemoteStub
setRef
-
-
-
-
Constructor Detail
-
RMIConnectionImpl_Stub
public RMIConnectionImpl_Stub(RemoteRef ref)
-
-
Method Detail
-
addNotificationListener
public 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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.addNotificationListener(ObjectName, ObjectName, NotificationFilter, Object)
. TheNotificationFilter
parameter is wrapped in aMarshalledObject
. TheObject
(handback) parameter is also wrapped in aMarshalledObject
.- Specified by:
addNotificationListener
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. If filter encapsulated in theMarshalledObject
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 aMarshalledObject
.$param_Subject_5
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
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.- See Also:
RMIConnection.removeNotificationListener(ObjectName, ObjectName, Subject)
,RMIConnection.removeNotificationListener(ObjectName, ObjectName, MarshalledObject, MarshalledObject, Subject)
-
addNotificationListeners
public Integer[] addNotificationListeners(ObjectName[] $param_arrayOf_ObjectName_1, MarshalledObject[] $param_arrayOf_MarshalledObject_2, Subject[] $param_arrayOf_Subject_3) throws IOException, InstanceNotFoundException
Description copied from interface: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
andhandback
are kept on the client side; in order for the client to be able to identify them, the server generates and returns a uniquelistenerID
. ThislistenerID
is forwarded with theNotifications
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.
- Specified by:
addNotificationListeners
in interfaceRMIConnection
- Parameters:
$param_arrayOf_ObjectName_1
- theObjectNames
identifying the MBeans emitting the Notifications.$param_arrayOf_MarshalledObject_2
- an array of marshalled representations of theNotificationFilters
. Elements of this array can be null.$param_arrayOf_Subject_3
- theSubjects
on behalf of which the listeners are being added. Elements of this array can be null. Also, thedelegationSubjects
parameter itself can be null, which is equivalent to an array of null values with the same size as thenames
andfilters
arrays.- Returns:
- an array of
listenerIDs
identifying the local listeners. This array has the same number of elements as the parameters. - Throws:
IOException
- if a general communication exception occurred.InstanceNotFoundException
- if one of thenames
does not correspond to any registered MBean.
-
close
public void close() throws IOException
Description copied from interface: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.
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceRMIConnection
- Throws:
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.
-
createMBean
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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, Object[], String[])
. TheObject[]
parameter is wrapped in aMarshalledObject
.- Specified by:
createMBean
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. 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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- An
ObjectInstance
, containing theObjectName
and the Java class name of the newly instantiated MBean. If the containedObjectName
isn
, the contained Java class name is
.getMBeanInfo(n)
.getClassName() - Throws:
IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.MBeanRegistrationException
- ThepreRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.MBeanException
- The constructor of the MBean has thrown an exception.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps ajava.lang.ClassNotFoundException
or ajava.lang.Exception
that occurred when trying to invoke the MBean's constructor.
-
createMBean
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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, ObjectName, Object[], String[])
. TheObject[]
parameter is wrapped in aMarshalledObject
.- Specified by:
createMBean
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. 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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- An
ObjectInstance
, containing theObjectName
and the Java class name of the newly instantiated MBean. If the containedObjectName
isn
, the contained Java class name is
.getMBeanInfo(n)
.getClassName() - Throws:
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.MBeanRegistrationException
- ThepreRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.MBeanException
- The constructor of the MBean has thrown an exception.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps ajava.lang.ClassNotFoundException
or ajava.lang.Exception
that occurred when trying to invoke the MBean's constructor.
-
createMBean
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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.createMBean(String, ObjectName, ObjectName)
.- Specified by:
createMBean
in interfaceRMIConnection
- Parameters:
$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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- An
ObjectInstance
, containing theObjectName
and the Java class name of the newly instantiated MBean. If the containedObjectName
isn
, the contained Java class name is
.getMBeanInfo(n)
.getClassName() - Throws:
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.MBeanRegistrationException
- ThepreRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.MBeanException
- The constructor of the MBean has thrown an exception.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps ajava.lang.ClassNotFoundException
or ajava.lang.Exception
that occurred when trying to invoke the MBean's constructor.
-
createMBean
public ObjectInstance createMBean(String $param_String_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3) throws IOException, InstanceAlreadyExistsException, MBeanException, MBeanRegistrationException, NotCompliantMBeanException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.createMBean(String, ObjectName)
.- Specified by:
createMBean
in interfaceRMIConnection
- Parameters:
$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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- An
ObjectInstance
, containing theObjectName
and the Java class name of the newly instantiated MBean. If the containedObjectName
isn
, the contained Java class name is
.getMBeanInfo(n)
.getClassName() - Throws:
IOException
- if a general communication exception occurred.InstanceAlreadyExistsException
- The MBean is already under the control of the MBean server.MBeanRegistrationException
- ThepreRegister
(MBeanRegistration
interface) method of the MBean has thrown an exception. The MBean will not be registered.MBeanException
- The constructor of the MBean has thrown an exception.NotCompliantMBeanException
- This class is not a JMX compliant MBean.ReflectionException
- Wraps ajava.lang.ClassNotFoundException
or ajava.lang.Exception
that occurred when trying to invoke the MBean's constructor.
-
fetchNotifications
public NotificationResult fetchNotifications(long $param_long_1, int $param_int_2, long $param_long_3) throws IOException
Description copied from interface: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 byRMIConnection.addNotificationListeners(ObjectName[], MarshalledObject[], Subject[])
.- Specified by:
fetchNotifications
in interfaceRMIConnection
- Parameters:
$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. TheTargetedNotification
array in the returnedNotificationResult
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 beLong.MAX_VALUE
to indicate that there is no timeout. The behavior is unspecified if this parameter is negative.- Returns:
- A
NotificationResult
. - Throws:
IOException
- if a general communication exception occurred.
-
getAttribute
public Object getAttribute(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3) throws IOException, AttributeNotFoundException, InstanceNotFoundException, MBeanException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getAttribute(ObjectName, String)
.- Specified by:
getAttribute
in interfaceRMIConnection
- Parameters:
$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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- The value of the retrieved attribute.
- Throws:
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 ajava.lang.Exception
thrown when trying to invoke the getter.- See Also:
RMIConnection.setAttribute(javax.management.ObjectName, java.rmi.MarshalledObject, javax.security.auth.Subject)
-
getAttributes
public AttributeList getAttributes(ObjectName $param_ObjectName_1, String[] $param_arrayOf_String_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getAttributes(ObjectName, String[])
.- Specified by:
getAttributes
in interfaceRMIConnection
- Parameters:
$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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- The list of the retrieved attributes.
- Throws:
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.- See Also:
RMIConnection.setAttributes(javax.management.ObjectName, java.rmi.MarshalledObject, javax.security.auth.Subject)
-
getConnectionId
public String getConnectionId() throws IOException
Description copied from interface:RMIConnection
Returns the connection ID. This string is different for every open connection to a given RMI connector server.
- Specified by:
getConnectionId
in interfaceRMIConnection
- Returns:
- the connection ID
- Throws:
IOException
- if a general communication exception occurred.- See Also:
RMIConnector.connect
-
getDefaultDomain
public String getDefaultDomain(Subject $param_Subject_1) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getDefaultDomain()
.- Specified by:
getDefaultDomain
in interfaceRMIConnection
- Parameters:
$param_Subject_1
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- the default domain.
- Throws:
IOException
- if a general communication exception occurred.
-
getDomains
public String[] getDomains(Subject $param_Subject_1) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getDomains()
.- Specified by:
getDomains
in interfaceRMIConnection
- Parameters:
$param_Subject_1
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- the list of domains.
- Throws:
IOException
- if a general communication exception occurred.
-
getMBeanCount
public Integer getMBeanCount(Subject $param_Subject_1) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getMBeanCount()
.- Specified by:
getMBeanCount
in interfaceRMIConnection
- Parameters:
$param_Subject_1
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- the number of MBeans registered.
- Throws:
IOException
- if a general communication exception occurred.
-
getMBeanInfo
public MBeanInfo getMBeanInfo(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException, IntrospectionException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getMBeanInfo(ObjectName)
.- Specified by:
getMBeanInfo
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- The name of the MBean to analyze$param_Subject_2
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- An instance of
MBeanInfo
allowing the retrieval of all attributes and operations of this MBean. - Throws:
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.
-
getObjectInstance
public ObjectInstance getObjectInstance(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.getObjectInstance(ObjectName)
.- Specified by:
getObjectInstance
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- The object name of the MBean.$param_Subject_2
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- The
ObjectInstance
associated with the MBean specified by name. The containedObjectName
isname
and the contained class name is
.getMBeanInfo(name)
.getClassName() - Throws:
IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.
-
invoke
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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.invoke(ObjectName, String, Object[], String[])
. TheObject[]
parameter is wrapped in aMarshalledObject
.- Specified by:
invoke
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. 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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- The object returned by the operation, which represents the result of invoking the operation on the MBean specified.
- Throws:
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 ajava.lang.Exception
thrown while trying to invoke the method.
-
isInstanceOf
public boolean isInstanceOf(ObjectName $param_ObjectName_1, String $param_String_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.isInstanceOf(ObjectName, String)
.- Specified by:
isInstanceOf
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- TheObjectName
of the MBean.$param_String_2
- The name of the class.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- true if the MBean specified is an instance of the specified class according to the rules above, false otherwise.
- Throws:
IOException
- if a general communication exception occurred.InstanceNotFoundException
- The MBean specified is not registered in the MBean server.
-
isRegistered
public boolean isRegistered(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.isRegistered(ObjectName)
.- Specified by:
isRegistered
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- The object name of the MBean to be checked.$param_Subject_2
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- True if the MBean is already registered in the MBean server, false otherwise.
- Throws:
IOException
- if a general communication exception occurred.
-
queryMBeans
public Set queryMBeans(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.queryMBeans(ObjectName, QueryExp)
. TheQueryExp
is wrapped in aMarshalledObject
.- Specified by:
queryMBeans
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. If theMarshalledObject
encapsulates a null value no query expression will be applied for selecting MBeans.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- A set containing the
ObjectInstance
objects for the selected MBeans. If no MBean satisfies the query an empty list is returned. - Throws:
IOException
- if a general communication exception occurred.
-
queryNames
public Set queryNames(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.queryNames(ObjectName, QueryExp)
. TheQueryExp
is wrapped in aMarshalledObject
.- Specified by:
queryNames
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
. If theMarshalledObject
encapsulates a null value no query expression will be applied for selecting MBeans.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- A set containing the ObjectNames for the MBeans selected. If no MBean satisfies the query, an empty list is returned.
- Throws:
IOException
- if a general communication exception occurred.
-
removeNotificationListener
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
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.removeNotificationListener(ObjectName, ObjectName, NotificationFilter, Object)
. TheNotificationFilter
parameter is wrapped in aMarshalledObject
. TheObject
parameter is also wrapped in aMarshalledObject
.- Specified by:
removeNotificationListener
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
.$param_MarshalledObject_4
- The handback that was specified when the listener was added, encapsulated into aMarshalledObject
.$param_Subject_5
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
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.- See Also:
RMIConnection.addNotificationListener(javax.management.ObjectName, javax.management.ObjectName, java.rmi.MarshalledObject, java.rmi.MarshalledObject, javax.security.auth.Subject)
-
removeNotificationListener
public void removeNotificationListener(ObjectName $param_ObjectName_1, ObjectName $param_ObjectName_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ListenerNotFoundException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.removeNotificationListener(ObjectName, ObjectName)
.- Specified by:
removeNotificationListener
in interfaceRMIConnection
- Parameters:
$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
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
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.- See Also:
RMIConnection.addNotificationListener(javax.management.ObjectName, javax.management.ObjectName, java.rmi.MarshalledObject, java.rmi.MarshalledObject, javax.security.auth.Subject)
-
removeNotificationListeners
public void removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ListenerNotFoundException
Description copied from interface:RMIConnection
Handles the
removeNotificationListener(ObjectName, NotificationListener)
andremoveNotificationListener(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 theRMIConnection.addNotificationListeners(ObjectName[], MarshalledObject[], Subject[])
method.- Specified by:
removeNotificationListeners
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- theObjectName
identifying the MBean emitting the Notifications.$param_arrayOf_Integer_2
- the list of the IDs corresponding to the listeners to remove.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
IOException
- if a general communication exception occurred.InstanceNotFoundException
- if the givenname
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 toMBeanServer.removeNotificationListener
.
-
setAttribute
public void setAttribute(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException, AttributeNotFoundException, InstanceNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.setAttribute(ObjectName, Attribute)
. TheAttribute
parameter is wrapped in aMarshalledObject
.- Specified by:
setAttribute
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
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 ajava.lang.Exception
thrown when trying to invoke the setter.- See Also:
RMIConnection.getAttribute(javax.management.ObjectName, java.lang.String, javax.security.auth.Subject)
-
setAttributes
public AttributeList setAttributes(ObjectName $param_ObjectName_1, MarshalledObject $param_MarshalledObject_2, Subject $param_Subject_3) throws IOException, InstanceNotFoundException, ReflectionException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.setAttributes(ObjectName, AttributeList)
. TheAttributeList
parameter is wrapped in aMarshalledObject
.- Specified by:
setAttributes
in interfaceRMIConnection
- Parameters:
$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 aMarshalledObject
.$param_Subject_3
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Returns:
- The list of attributes that were set, with their new values.
- Throws:
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.- See Also:
RMIConnection.getAttributes(javax.management.ObjectName, java.lang.String[], javax.security.auth.Subject)
-
unregisterMBean
public void unregisterMBean(ObjectName $param_ObjectName_1, Subject $param_Subject_2) throws IOException, InstanceNotFoundException, MBeanRegistrationException
Description copied from interface:RMIConnection
Handles the methodMBeanServerConnection.unregisterMBean(ObjectName)
.- Specified by:
unregisterMBean
in interfaceRMIConnection
- Parameters:
$param_ObjectName_1
- The object name of the MBean to be unregistered.$param_Subject_2
- TheSubject
containing the delegation principals ornull
if the authentication principal is used instead.- Throws:
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.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/management/remote/rmi/RMIConnectionImpl_Stub.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.