Examples of MBeanEntry


Examples of org.jboss.mx.server.registry.MBeanEntry

    public static ClassLoader getObjectNameClassLoader (MBeanServer server,ObjectName obj)
    {
        try
        {
            ObjectName objName=new ObjectName("JMImplementation:type=MBeanRegistry");
            MBeanEntry me=(MBeanEntry)server.invoke(objName,"get",new Object[]{obj},new String[]{ObjectName.class.getName()});
            if (me!=null)
            {
                return me.getClassLoader();
            }
        }
        catch (Exception ex)
        {
        }
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

   public void unregisterMBean(ObjectName name)
      throws InstanceNotFoundException, MBeanRegistrationException
   {
      // Get the mbean to remove
      MBeanEntry entry = registry.get(name);
      Object mbean = entry.getResourceInstance();
      name = entry.getObjectName();

      try
      {
         invoke(new ObjectName(MBEAN_REGISTRY),
                "unregisterMBean",
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

      List entries = registry.findEntries(name);
      Iterator iterator = entries.iterator();
      while (iterator.hasNext())
      {
         // Check each MBean against the query
         MBeanEntry entry = (MBeanEntry) iterator.next();
         ObjectName objectName = entry.getObjectName();
         if (queryMBean(objectName, query) == true)
         {
            try
            {
               ObjectInstance instance = registry.getObjectInstance(objectName);
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

      List entries = registry.findEntries(name);
      Iterator iterator = entries.iterator();
      while (iterator.hasNext())
      {
         // Check each MBean against the query
         MBeanEntry entry = (MBeanEntry) iterator.next();
         ObjectName objectName = entry.getObjectName();
         if (queryMBean(objectName, query) == true)
            result.add(objectName);
      }

      return result;
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

      throws MBeanException,
             AttributeNotFoundException,
             InstanceNotFoundException,
             ReflectionException
   {
      MBeanEntry entry = registry.get(name);
      ClassLoader newTCL = entry.getClassLoader();
      MBeanInvoker mbean = entry.getInvoker();

      Thread thread = Thread.currentThread();
      ClassLoader oldTCL = thread.getContextClassLoader();
      try
      {
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

   public AttributeList getAttributes(ObjectName name, String[] attributes)
      throws InstanceNotFoundException,
             ReflectionException
   {
      MBeanEntry entry = registry.get(name);
      ClassLoader newTCL = entry.getClassLoader();
      MBeanInvoker mbean = entry.getInvoker();

      Thread thread = Thread.currentThread();
      ClassLoader oldTCL = thread.getContextClassLoader();
      try
      {
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

   }

   public void setAttribute(ObjectName name, Attribute attribute)
   throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
   {
      MBeanEntry entry = registry.get(name);
      ClassLoader newTCL = entry.getClassLoader();
      MBeanInvoker mbean = entry.getInvoker();

      Thread thread = Thread.currentThread();
      ClassLoader oldTCL = thread.getContextClassLoader();
      try
      {
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

   }

   public AttributeList setAttributes(ObjectName name, AttributeList attributes)
   throws InstanceNotFoundException, ReflectionException
   {
      MBeanEntry entry = registry.get(name);
      ClassLoader newTCL = entry.getClassLoader();
      MBeanInvoker mbean = entry.getInvoker();

      Thread thread = Thread.currentThread();
      ClassLoader oldTCL = thread.getContextClassLoader();
      try
      {
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

   }

   public Object invoke(ObjectName name, String operationName, Object[] params, String[] signature)
   throws InstanceNotFoundException, MBeanException, ReflectionException
   {
      MBeanEntry entry = registry.get(name);
      ClassLoader newTCL = entry.getClassLoader();
      MBeanInvoker mbean = entry.getInvoker();

      Thread thread = Thread.currentThread();
      ClassLoader oldTCL = thread.getContextClassLoader();
      try
      {
View Full Code Here

Examples of org.jboss.mx.server.registry.MBeanEntry

      }
   }

   public MBeanInfo getMBeanInfo(ObjectName name) throws InstanceNotFoundException, IntrospectionException, ReflectionException
   {
      MBeanEntry entry     = registry.get(name);
      ClassLoader newTCL   = entry.getClassLoader();
      MBeanInvoker invoker = entry.getInvoker();

      Thread thread        = Thread.currentThread();
      ClassLoader oldTCL   = thread.getContextClassLoader();
      try
      {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.