/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package javax.management.openmbean; import javax.management.MBeanAttributeInfo; import javax.management.MBeanConstructorInfo; import javax.management.MBeanOperationInfo; import javax.management.MBeanNotificationInfo; /** * An MBean is an OpenMBean when its getMBeanInfo() returns an MBeanInfo * implementing this interface and extending javax.management.MBeanInfo.
* * {@link OpenMBeanInfoSupport} is an example of such a class.
* * The MBean info classes should be the OpenInfo versions. e.g. * an {@link OpenMBeanAttributeInfo} instead of MBeanAttributeInfo. * * @author Adrian Brock. * * @version $Revision: 57200 $ * */ public interface OpenMBeanInfo { // Attributes ---------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- /** * Retrieve the fully qualified class name of the open MBean the * implementation of this interface describes. * * @return the fully qualified class name. */ String getClassName(); /** * Retrieve a human readable description of the open MBean the * implementation of this interface describes. * * @return the description. */ String getDescription(); /** * Retrieve an array of OpenMBeanAttributeInfos describing each attribute * of the open mbean.
* * Each instance should also implement OpenMBeanAttributeInfo * * @return the array of attributes. */ MBeanAttributeInfo[] getAttributes(); /** * Retrieve an array of OpenMBeanOperationInfos describing each operation * of the open mbean.
* * Each instance should also implement OpenMBeanOperationInfo * * @return the array of operations. */ MBeanOperationInfo[] getOperations(); /** * Retrieve an array of OpenMBeanConstructorInfos describing each constructor * of the open mbean.
* * Each instance should also implement OpenMBeanConstructorInfo * * @return the array of constructors. */ MBeanConstructorInfo[] getConstructors(); /** * Retrieve an array of MBeanNotificationInfos describing each notification * of the open mbean. * * @return the array of notifications. */ MBeanNotificationInfo[] getNotifications(); /** * Compares an object for equality with the implementing class.
*
* The object is not null
* The object implements the open mbean info interface
* The getClassName() methods return strings that are equal
* The information objects (attributes, constructors, operations and
* notifications) are the equal
*
* @param obj the object to test
* @return true when above is true, false otherwise
*/
boolean equals(Object obj);
/**
* Generates a hashcode for the implementation.
*
* The hashcode is the sum of the hashcodes for
* getClassName()
* java.util.HashSet(java.util.Arrays.asList(getAttributes()).hashCode()
* java.util.HashSet(java.util.Arrays.asList(getConstructors()).hashCode()
* java.util.HashSet(java.util.Arrays.asList(getOperations()).hashCode()
* java.util.HashSet(java.util.Arrays.asList(getNotifications()).hashCode()
*
* @return the calculated hashcode
*/
int hashCode();
/**
* A string representation of the open mbean info.
*
* It is made up of
* The implementing class
* getClassName()
* toString() for each of the info arrays
*
* @return the string
*/
String toString();
}