Class ManagedBean

java.lang.Object
org.apache.tomcat.util.modeler.ManagedBean
All Implemented Interfaces:
Serializable

public class ManagedBean extends Object implements Serializable

Internal configuration information for a managed bean (MBean) descriptor.

Author:
Craig R. McClanahan
See Also:
  • Field Details Link icon

    • className Link icon

      protected String className
    • description Link icon

      protected String description
    • domain Link icon

      protected String domain
    • group Link icon

      protected String group
    • name Link icon

      protected String name
    • type Link icon

      protected String type
  • Constructor Details Link icon

    • ManagedBean Link icon

      public ManagedBean()
      Constructor. Will add default attributes.
  • Method Details Link icon

    • getAttributes Link icon

      public AttributeInfo[] getAttributes()
      Returns:
      the collection of attributes for this MBean.
    • getClassName Link icon

      public String getClassName()
      The fully qualified name of the Java class of the MBean described by this descriptor. If not specified, the standard JMX class (javax.management.modelmbean.RequiredModeLMBean) will be utilized.
      Returns:
      the class name
    • setClassName Link icon

      public void setClassName(String className)
    • getDescription Link icon

      public String getDescription()
      Returns:
      the human-readable description of this MBean.
    • setDescription Link icon

      public void setDescription(String description)
    • getDomain Link icon

      public String getDomain()
      Returns:
      the (optional) ObjectName domain in which this MBean should be registered in the MBeanServer.
    • setDomain Link icon

      public void setDomain(String domain)
    • getGroup Link icon

      public String getGroup()
      Returns:
      the (optional) group to which this MBean belongs.
    • setGroup Link icon

      public void setGroup(String group)
    • getName Link icon

      public String getName()
      Returns:
      the name of this managed bean, which must be unique among all MBeans managed by a particular MBeans server.
    • setName Link icon

      public void setName(String name)
    • getNotifications Link icon

      public NotificationInfo[] getNotifications()
      Returns:
      the collection of notifications for this MBean.
    • getOperations Link icon

      public OperationInfo[] getOperations()
      Returns:
      the collection of operations for this MBean.
    • getType Link icon

      public String getType()
      Returns:
      the fully qualified name of the Java class of the resource implementation class described by the managed bean described by this descriptor.
    • setType Link icon

      public void setType(String type)
    • addAttribute Link icon

      public void addAttribute(AttributeInfo attribute)
      Add a new attribute to the set of attributes for this MBean.
      Parameters:
      attribute - The new attribute descriptor
    • addNotification Link icon

      public void addNotification(NotificationInfo notification)
      Add a new notification to the set of notifications for this MBean.
      Parameters:
      notification - The new notification descriptor
    • addOperation Link icon

      public void addOperation(OperationInfo operation)
      Add a new operation to the set of operations for this MBean.
      Parameters:
      operation - The new operation descriptor
    • createMBean Link icon

      Create and return a ModelMBean that has been preconfigured with the ModelMBeanInfo information for this managed bean, and is associated with the specified managed object instance. The returned ModelMBean will NOT have been registered with our MBeanServer.
      Parameters:
      instance - Instanced of the managed object, or null for no associated instance
      Returns:
      the MBean
      Throws:
      InstanceNotFoundException - if the managed resource object cannot be found
      MBeanException - if a problem occurs instantiating the ModelMBean instance
      RuntimeOperationsException - if a JMX runtime error occurs
    • toString Link icon

      public String toString()
      Return a string representation of this managed bean.
      Overrides:
      toString in class Object
    • getSetter Link icon

    • getInvoke Link icon

      public Method getInvoke(String aname, Object[] params, String[] signature, BaseModelMBean bean, Object resource) throws MBeanException, ReflectionException
      Throws:
      MBeanException
      ReflectionException