/* * @(#)MBeanConstructorInfo.java 1.28 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.management; import java.lang.reflect.Constructor; import java.util.Arrays; /** * Describes a constructor exposed by an MBean. Instances of this * class are immutable. Subclasses may be mutable but this is not * recommended. * * @since 1.5 */ public class MBeanConstructorInfo extends MBeanFeatureInfo implements java.io.Serializable, Cloneable { /* Serial version */ static final long serialVersionUID = 4433990064191844427L; static final MBeanConstructorInfo[] NO_CONSTRUCTORS = new MBeanConstructorInfo[0]; /** @see MBeanInfo#immutable */ private final transient boolean immutable; /** * @serial The signature of the method, that is, the class names of the arguments. */ private final MBeanParameterInfo[] signature; /** * Constructs an MBeanConstructorInfo object. * * @param description A human readable description of the operation. * @param constructor The java.lang.reflect.Constructor * object describing the MBean constructor. */ public MBeanConstructorInfo(String description, Constructor constructor) { this(constructor.getName(), description, constructorSignature(constructor)); } /** * Constructs an MBeanConstructorInfo object. * * @param name The name of the constructor. * @param signature MBeanParameterInfo objects * describing the parameters(arguments) of the constructor. This * may be null with the same effect as a zero-length array. * @param description A human readable description of the constructor. */ public MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature) throws IllegalArgumentException { super(name, description); if (signature == null || signature.length == 0) signature = MBeanParameterInfo.NO_PARAMS; else signature = (MBeanParameterInfo[]) signature.clone(); this.signature = signature; this.immutable = MBeanInfo.isImmutableClass(this.getClass(), MBeanConstructorInfo.class); } /** *

Returns a shallow clone of this instance. The clone is * obtained by simply calling super.clone(), thus calling * the default native shallow cloning mechanism implemented by * Object.clone(). No deeper cloning of any internal * field is made.

* *

Since this class is immutable, cloning is chiefly of * interest to subclasses.

*/ public Object clone () { try { return super.clone() ; } catch (CloneNotSupportedException e) { // should not happen as this class is cloneable return null; } } /** *

Returns the list of parameters for this constructor. Each * parameter is described by an MBeanParameterInfo * object.

* *

The returned array is a shallow copy of the internal array, * which means that it is a copy of the internal array of * references to the MBeanParameterInfo objects but * that each referenced MBeanParameterInfo object is * not copied.

* * @return An array of MBeanParameterInfo objects. */ public MBeanParameterInfo[] getSignature() { if (signature.length == 0) return signature; else return (MBeanParameterInfo[]) signature.clone(); } private MBeanParameterInfo[] fastGetSignature() { if (immutable) return signature; else return getSignature(); } /** * Compare this MBeanConstructorInfo to another. * * @param o the object to compare to. * * @return true iff o is an MBeanConstructorInfo such * that its {@link #getName()}, {@link #getDescription()}, and * {@link #getSignature()} values are equal (not necessarily * identical) to those of this MBeanConstructorInfo. Two * signature arrays are equal if their elements are pairwise * equal. */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof MBeanConstructorInfo)) return false; MBeanConstructorInfo p = (MBeanConstructorInfo) o; return (p.getName().equals(getName()) && p.getDescription().equals(getDescription()) && Arrays.equals(p.fastGetSignature(), fastGetSignature())); } /* Unlike attributes and operations, it's quite likely we'll have more than one constructor with the same name and even description, so we include the parameter array in the hashcode. We don't include the description, though, because it could be quite long and yet the same between constructors. */ public int hashCode() { int hash = getName().hashCode(); MBeanParameterInfo[] sig = fastGetSignature(); for (int i = 0; i < sig.length; i++) hash ^= sig[i].hashCode(); return hash; } private static MBeanParameterInfo[] constructorSignature(Constructor cn) { final Class[] classes = cn.getParameterTypes(); final MBeanParameterInfo[] params = new MBeanParameterInfo[classes.length]; for (int i = 0; i < classes.length; i++) { final String pn = "p" + (i + 1); params[i] = new MBeanParameterInfo(pn, classes[i].getName(), ""); } return params; } }