/* * 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 java.util.Collection; /** * An Open Data Type for composite data structures.

* * @see CompositeDataSupport * * @author Adrian Brock. * * @version $Revision: 57200 $ * */ public interface CompositeData { // Attributes ---------------------------------------------------- // Public -------------------------------------------------------- /** * Retrieve the composite type for this composite data * * @return the composite type */ CompositeType getCompositeType(); /** * Retrieve the value for the item with the passed key * * @param the key to the item * @return the value * @exception IllegalArgumentException when the key is null or the empty * string * @exception InvalidKeyException when the key does not exist */ Object get(String key); /** * Retrieve the arrray of values for the item with the passed keys * * @param an array of key values * @return the array of values * @exception IllegalArgumentException when a key is null or the empty * string or the array is null * @exception InvalidKeyException when a key does not exist */ Object[] getAll(String[] key); /** * Tests whether a key is part of this composite data * * @param the key to test * @return true when the key exists, false otherwise */ boolean containsKey(String key); /** * Tests whether a item exists with the passed value * * @param the value to test * @return true when the value exists, false otherwise */ boolean containsValue(Object value); /** * The values of this composite data

* * An iterator over the returned collection returns result in ascending * lexicographic order * * @return an unmodifiable Collection of the values of this CompositeType. */ Collection values(); /** * Tests whether two composite data objects are equal

* * The object is non-null
* The object implements this interface
* The composite types are equal
* The values are equal * * @param obj the object to test * @return true when the above conditions are satisfied, false otherwise. */ boolean equals(Object obj); /** * Generates a hashcode for the implementation.

* * The sum of the hashCodes for the elements mentioned in the equals * method * * @return the calculated hashcode */ int hashCode(); /** * A string representation of the open mbean operation info.

* * It is made up of implementation class and the values mentioned * in the equals method * * @return the string */ String toString(); }