Java Doc for MBeanServer.java in  » 6.0-JDK-Core » management » javax » management » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » management » javax.management 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.management.MBeanServer

MBeanServer
public interface MBeanServer extends MBeanServerConnection(Code)

This is the interface for MBean manipulation on the agent side. It contains the methods necessary for the creation, registration, and deletion of MBeans as well as the access methods for registered MBeans. This is the core component of the JMX infrastructure.

User code does not usually implement this interface. Instead, an object that implements this interface is obtained with one of the methods in the MBeanServerFactory class.

Every MBean which is added to the MBean server becomes manageable: its attributes and operations become remotely accessible through the connectors/adaptors connected to that MBean server. A Java object cannot be registered in the MBean server unless it is a JMX compliant MBean.

When an MBean is registered or unregistered in the MBean server a javax.management.MBeanServerNotificationMBeanServerNotification Notification is emitted. To register an object as listener to MBeanServerNotifications you should call the MBean server method MBeanServer.addNotificationListeneraddNotificationListener with ObjectName the ObjectName of the javax.management.MBeanServerDelegate MBeanServerDelegate . This ObjectName is:
JMImplementation:type=MBeanServerDelegate.

An object obtained from the MBeanServerFactory.createMBeanServer(String) createMBeanServer or MBeanServerFactory.newMBeanServer(String) newMBeanServer methods of the MBeanServerFactory class applies security checks to its methods, as follows.

First, if there is no security manager ( System.getSecurityManager is null), then an implementation of this interface is free not to make any checks.

Assuming that there is a security manager, or that the implementation chooses to make checks anyway, the checks are made as detailed below. In what follows, className is the string returned by MBeanInfo.getClassName for the target MBean.

If a security check fails, the method throws SecurityException .

For methods that can throw InstanceNotFoundException , this exception is thrown for a non-existent MBean, regardless of permissions. This is because a non-existent MBean has no className.


since:
   1.5




Method Summary
public  voidaddNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback)
    
public  voidaddNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback)
    
public  ObjectInstancecreateMBean(String className, ObjectName name)
    
public  ObjectInstancecreateMBean(String className, ObjectName name, ObjectName loaderName)
    
public  ObjectInstancecreateMBean(String className, ObjectName name, Object params, String signature)
    
public  ObjectInstancecreateMBean(String className, ObjectName name, ObjectName loaderName, Object params, String signature)
    
public  ObjectInputStreamdeserialize(ObjectName name, byte[] data)
    

De-serializes a byte array in the context of the class loader of an MBean.


Parameters:
  name - The name of the MBean whose class loader should beused for the de-serialization.
Parameters:
  data - The byte array to be de-sererialized.
public  ObjectInputStreamdeserialize(String className, byte[] data)
    

De-serializes a byte array in the context of a given MBean class loader.

public  ObjectInputStreamdeserialize(String className, ObjectName loaderName, byte[] data)
    

De-serializes a byte array in the context of a given MBean class loader.

public  ObjectgetAttribute(ObjectName name, String attribute)
    
public  AttributeListgetAttributes(ObjectName name, String[] attributes)
    
public  ClassLoadergetClassLoader(ObjectName loaderName)
    

Return the named java.lang.ClassLoader .


Parameters:
  loaderName - The ObjectName of the ClassLoader.
public  ClassLoadergetClassLoaderFor(ObjectName mbeanName)
    

Return the java.lang.ClassLoader that was used for loading the class of the named MBean.


Parameters:
  mbeanName - The ObjectName of the MBean.
public  ClassLoaderRepositorygetClassLoaderRepository()
    

Return the ClassLoaderRepository for this MBeanServer.

public  StringgetDefaultDomain()
    
public  String[]getDomains()
    
public  IntegergetMBeanCount()
     Returns the number of MBeans registered in the MBean server.
public  MBeanInfogetMBeanInfo(ObjectName name)
    
public  ObjectInstancegetObjectInstance(ObjectName name)
    
public  Objectinstantiate(String className)
    

Instantiates an object using the list of all class loaders registered in the MBean server's javax.management.loading.ClassLoaderRepository Class LoaderRepository .

public  Objectinstantiate(String className, ObjectName loaderName)
    

Instantiates an object using the class Loader specified by its ObjectName. If the loader name is null, the ClassLoader that loaded the MBean Server will be used.

public  Objectinstantiate(String className, Object params, String signature)
    

Instantiates an object using the list of all class loaders registered in the MBean server javax.management.loading.ClassLoaderRepository Class LoaderRepository .

public  Objectinstantiate(String className, ObjectName loaderName, Object params, String signature)
    

Instantiates an object.

public  Objectinvoke(ObjectName name, String operationName, Object params, String signature)
    
public  booleanisInstanceOf(ObjectName name, String className)
    
public  booleanisRegistered(ObjectName name)
    
public  Set<ObjectInstance>queryMBeans(ObjectName name, QueryExp query)
    
public  Set<ObjectName>queryNames(ObjectName name, QueryExp query)
    
public  ObjectInstanceregisterMBean(Object object, ObjectName name)
     Registers a pre-existing object as an MBean with the MBean server.
public  voidremoveNotificationListener(ObjectName name, ObjectName listener)
    
public  voidremoveNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback)
    
public  voidremoveNotificationListener(ObjectName name, NotificationListener listener)
    
public  voidremoveNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback)
    
public  voidsetAttribute(ObjectName name, Attribute attribute)
    
public  AttributeListsetAttributes(ObjectName name, AttributeList attributes)
    
public  voidunregisterMBean(ObjectName name)
    



Method Detail
addNotificationListener
public void addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException(Code)



addNotificationListener
public void addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException(Code)



createMBean
public ObjectInstance createMBean(String className, ObjectName name) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException(Code)



createMBean
public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException(Code)



createMBean
public ObjectInstance createMBean(String className, ObjectName name, Object params, String signature) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException(Code)



createMBean
public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, Object params, String signature) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException(Code)



deserialize
public ObjectInputStream deserialize(ObjectName name, byte[] data) throws InstanceNotFoundException, OperationsException(Code)

De-serializes a byte array in the context of the class loader of an MBean.


Parameters:
  name - The name of the MBean whose class loader should beused for the de-serialization.
Parameters:
  data - The byte array to be de-sererialized. The de-serialized object stream.
exception:
  InstanceNotFoundException - The MBean specified is notfound.
exception:
  OperationsException - Any of the usual Input/Outputrelated exceptions.MBeanServer.getClassLoaderFor getClassLoaderFor



deserialize
public ObjectInputStream deserialize(String className, byte[] data) throws OperationsException, ReflectionException(Code)

De-serializes a byte array in the context of a given MBean class loader. The class loader is found by loading the class className through the javax.management.loading.ClassLoaderRepository Class LoaderRepository . The resultant class's class loader is the one to use.
Parameters:
  className - The name of the class whose class loader should beused for the de-serialization.
Parameters:
  data - The byte array to be de-sererialized. The de-serialized object stream.
exception:
  OperationsException - Any of the usual Input/Outputrelated exceptions.
exception:
  ReflectionException - The specified class could not beloaded by the class loader repositoryMBeanServer.getClassLoaderRepository




deserialize
public ObjectInputStream deserialize(String className, ObjectName loaderName, byte[] data) throws InstanceNotFoundException, OperationsException, ReflectionException(Code)

De-serializes a byte array in the context of a given MBean class loader. The class loader is the one that loaded the class with name "className". The name of the class loader to be used for loading the specified class is specified. If null, the MBean Server's class loader will be used.


Parameters:
  className - The name of the class whose class loader should beused for the de-serialization.
Parameters:
  data - The byte array to be de-sererialized.
Parameters:
  loaderName - The name of the class loader to be used forloading the specified class. If null, the MBean Server's classloader will be used. The de-serialized object stream.
exception:
  InstanceNotFoundException - The specified class loaderMBean is not found.
exception:
  OperationsException - Any of the usual Input/Outputrelated exceptions.
exception:
  ReflectionException - The specified class could not beloaded by the specified class loader.MBeanServer.getClassLoader getClassLoader



getAttribute
public Object getAttribute(ObjectName name, String attribute) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException(Code)



getAttributes
public AttributeList getAttributes(ObjectName name, String[] attributes) throws InstanceNotFoundException, ReflectionException(Code)



getClassLoader
public ClassLoader getClassLoader(ObjectName loaderName) throws InstanceNotFoundException(Code)

Return the named java.lang.ClassLoader .


Parameters:
  loaderName - The ObjectName of the ClassLoader. May benull, in which case the MBean server's own ClassLoader isreturned. The named ClassLoader. If l is the actualClassLoader with that name, and r is the returnedvalue, then either:What this means is that the ClassLoader may be wrapped inanother ClassLoader for security or other reasons.
exception:
  InstanceNotFoundException - if the named ClassLoader is not found.



getClassLoaderFor
public ClassLoader getClassLoaderFor(ObjectName mbeanName) throws InstanceNotFoundException(Code)

Return the java.lang.ClassLoader that was used for loading the class of the named MBean.


Parameters:
  mbeanName - The ObjectName of the MBean. The ClassLoader used for that MBean. If lis the MBean's actual ClassLoader, and r is thereturned value, then either:What this means is that the ClassLoader may be wrapped inanother ClassLoader for security or other reasons.
exception:
  InstanceNotFoundException - if the named MBean is not found.



getClassLoaderRepository
public ClassLoaderRepository getClassLoaderRepository()(Code)

Return the ClassLoaderRepository for this MBeanServer. The ClassLoaderRepository for this MBeanServer.




getDefaultDomain
public String getDefaultDomain()(Code)



getDomains
public String[] getDomains()(Code)



getMBeanCount
public Integer getMBeanCount()(Code)
Returns the number of MBeans registered in the MBean server. the number of registered MBeans, wrapped in an Integer.If the caller's permissions are restricted, this number maybe greater than the number of MBeans the caller can access.



getMBeanInfo
public MBeanInfo getMBeanInfo(ObjectName name) throws InstanceNotFoundException, IntrospectionException, ReflectionException(Code)



getObjectInstance
public ObjectInstance getObjectInstance(ObjectName name) throws InstanceNotFoundException(Code)



instantiate
public Object instantiate(String className) throws ReflectionException, MBeanException(Code)

Instantiates an object using the list of all class loaders registered in the MBean server's javax.management.loading.ClassLoaderRepository Class LoaderRepository . The object's class should have a public constructor. This method returns a reference to the newly created object. The newly created object is not registered in the MBean server.

This method is equivalent to MBeanServer.instantiate(String,Object[],String[])instantiate(className, (Object[]) null, (String[]) null) .


Parameters:
  className - The class name of the object to be instantiated. The newly instantiated object.
exception:
  ReflectionException - Wraps ajava.lang.ClassNotFoundException or thejava.lang.Exception that occurred when trying toinvoke the object's constructor.
exception:
  MBeanException - The constructor of the object hasthrown an exception
exception:
  RuntimeOperationsException - Wraps ajava.lang.IllegalArgumentException: The classNamepassed in parameter is null.



instantiate
public Object instantiate(String className, ObjectName loaderName) throws ReflectionException, MBeanException, InstanceNotFoundException(Code)

Instantiates an object using the class Loader specified by its ObjectName. If the loader name is null, the ClassLoader that loaded the MBean Server will be used. The object's class should have a public constructor. This method returns a reference to the newly created object. The newly created object is not registered in the MBean server.

This method is equivalent to MBeanServer.instantiate(String,ObjectName,Object[],String[])instantiate(className, loaderName, (Object[]) null, (String[])null) .


Parameters:
  className - The class name of the MBean to be instantiated.
Parameters:
  loaderName - The object name of the class loader to be used. The newly instantiated object.
exception:
  ReflectionException - Wraps ajava.lang.ClassNotFoundException or thejava.lang.Exception that occurred when trying toinvoke the object's constructor.
exception:
  MBeanException - The constructor of the object hasthrown an exception.
exception:
  InstanceNotFoundException - The specified class loaderis not registered in the MBeanServer.
exception:
  RuntimeOperationsException - Wraps ajava.lang.IllegalArgumentException: The classNamepassed in parameter is null.



instantiate
public Object instantiate(String className, Object params, String signature) throws ReflectionException, MBeanException(Code)

Instantiates an object using the list of all class loaders registered in the MBean server javax.management.loading.ClassLoaderRepository Class LoaderRepository . The object's class should have a public constructor. The call returns a reference to the newly created object. The newly created object is not registered in the MBean server.


Parameters:
  className - The class name of the object to be instantiated.
Parameters:
  params - An array containing the parameters of theconstructor to be invoked.
Parameters:
  signature - An array containing the signature of theconstructor to be invoked. The newly instantiated object.
exception:
  ReflectionException - Wraps ajava.lang.ClassNotFoundException or thejava.lang.Exception that occurred when trying toinvoke the object's constructor.
exception:
  MBeanException - The constructor of the object hasthrown an exception
exception:
  RuntimeOperationsException - Wraps ajava.lang.IllegalArgumentException: The classNamepassed in parameter is null.



instantiate
public Object instantiate(String className, ObjectName loaderName, Object params, String signature) throws ReflectionException, MBeanException, InstanceNotFoundException(Code)

Instantiates an object. The class loader to be used is identified by its object name. If the object name of the loader is null, the ClassLoader that loaded the MBean server will be used. The object's class should have a public constructor. The call returns a reference to the newly created object. The newly created object is not registered in the MBean server.


Parameters:
  className - The class name of the object to be instantiated.
Parameters:
  params - An array containing the parameters of theconstructor to be invoked.
Parameters:
  signature - An array containing the signature of theconstructor to be invoked.
Parameters:
  loaderName - The object name of the class loader to be used. The newly instantiated object.
exception:
  ReflectionException - Wraps a java.lang.ClassNotFoundException or the java.lang.Exception that occurred when trying to invoke the object's constructor.
exception:
  MBeanException - The constructor of the object hasthrown an exception
exception:
  InstanceNotFoundException - The specified class loaderis not registered in the MBean server.
exception:
  RuntimeOperationsException - Wraps ajava.lang.IllegalArgumentException: The classNamepassed in parameter is null.



invoke
public Object invoke(ObjectName name, String operationName, Object params, String signature) throws InstanceNotFoundException, MBeanException, ReflectionException(Code)



isInstanceOf
public boolean isInstanceOf(ObjectName name, String className) throws InstanceNotFoundException(Code)



isRegistered
public boolean isRegistered(ObjectName name)(Code)



queryMBeans
public Set<ObjectInstance> queryMBeans(ObjectName name, QueryExp query)(Code)



queryNames
public Set<ObjectName> queryNames(ObjectName name, QueryExp query)(Code)



registerMBean
public ObjectInstance registerMBean(Object object, ObjectName name) throws InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException(Code)
Registers a pre-existing object as an MBean with the MBean server. If the object name given is null, the MBean must provide its own name by implementing the javax.management.MBeanRegistration MBeanRegistration interface and returning the name from the MBeanRegistration.preRegister preRegister method.
Parameters:
  object - The MBean to be registered as an MBean.
Parameters:
  name - The object name of the MBean. May be null. An ObjectInstance, containing theObjectName and the Java class name of the newlyregistered MBean. If the contained ObjectNameis n, the contained Java class name isMBeanServer.getMBeanInfo getMBeanInfo(n).getClassName().
exception:
  InstanceAlreadyExistsException - The MBean is alreadyunder the control of the MBean server.
exception:
  MBeanRegistrationException - ThepreRegister (MBeanRegistrationinterface) method of the MBean has thrown an exception. TheMBean will not be registered.
exception:
  NotCompliantMBeanException - This object is not a JMXcompliant MBean
exception:
  RuntimeOperationsException - Wraps ajava.lang.IllegalArgumentException: The objectpassed in parameter is null or no object name is specified.



removeNotificationListener
public void removeNotificationListener(ObjectName name, ObjectName listener) throws InstanceNotFoundException, ListenerNotFoundException(Code)



removeNotificationListener
public void removeNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException(Code)



removeNotificationListener
public void removeNotificationListener(ObjectName name, NotificationListener listener) throws InstanceNotFoundException, ListenerNotFoundException(Code)



removeNotificationListener
public void removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException(Code)



setAttribute
public void setAttribute(ObjectName name, Attribute attribute) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException(Code)



setAttributes
public AttributeList setAttributes(ObjectName name, AttributeList attributes) throws InstanceNotFoundException, ReflectionException(Code)



unregisterMBean
public void unregisterMBean(ObjectName name) throws InstanceNotFoundException, MBeanRegistrationException(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.