jdk/src/share/classes/javax/management/openmbean/OpenMBeanOperationInfo.java
author yan
Mon, 12 May 2014 14:33:13 +0400
changeset 24368 2b4801b94265
parent 5506 202f599c92aa
permissions -rw-r--r--
8038795: Tidy warnings cleanup for javax.management Reviewed-by: dfuchs Contributed-by: Alexander Stepanov <alexander.v.stepanov@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
24368
2b4801b94265 8038795: Tidy warnings cleanup for javax.management
yan
parents: 5506
diff changeset
     2
 * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
package javax.management.openmbean;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
// java import
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
//
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
// jmx import
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
//
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.management.MBeanParameterInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p>Describes an operation of an Open MBean.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>This interface declares the same methods as the class {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * javax.management.MBeanOperationInfo}.  A class implementing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * interface (typically {@link OpenMBeanOperationInfoSupport}) should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * extend {@link javax.management.MBeanOperationInfo}.</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p>The {@link #getSignature()} method should return at runtime an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * array of instances of a subclass of {@link MBeanParameterInfo}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * which implements the {@link OpenMBeanParameterInfo} interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * (typically {@link OpenMBeanParameterInfoSupport}).</p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
public interface OpenMBeanOperationInfo  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    // Re-declares fields and methods that are in class MBeanOperationInfo of JMX 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // (fields and methods will be removed when MBeanOperationInfo is made a parent interface of this interface)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * Returns a human readable description of the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * described by this <tt>OpenMBeanOperationInfo</tt> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * @return the description.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public String getDescription() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * Returns the name of the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * described by this <tt>OpenMBeanOperationInfo</tt> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @return the name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public String getName() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Returns an array of <tt>OpenMBeanParameterInfo</tt> instances
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * describing each parameter in the signature of the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * described by this <tt>OpenMBeanOperationInfo</tt> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Each instance in the returned array should actually be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * subclass of <tt>MBeanParameterInfo</tt> which implements the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * <tt>OpenMBeanParameterInfo</tt> interface (typically {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * OpenMBeanParameterInfoSupport}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @return the signature.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    public MBeanParameterInfo[] getSignature() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * Returns an <tt>int</tt> constant qualifying the impact of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * operation described by this <tt>OpenMBeanOperationInfo</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * The returned constant is one of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * javax.management.MBeanOperationInfo#INFO}, {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * javax.management.MBeanOperationInfo#ACTION}, {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * javax.management.MBeanOperationInfo#ACTION_INFO}, or {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * javax.management.MBeanOperationInfo#UNKNOWN}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @return the impact code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public int getImpact() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Returns the fully qualified Java class name of the values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * returned by the operation described by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * <tt>OpenMBeanOperationInfo</tt> instance.  This method should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * return the same value as a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * <tt>getReturnOpenType().getClassName()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @return the return type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public String getReturnType() ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    // Now declares methods that are specific to open MBeans
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * Returns the <i>open type</i> of the values returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * operation described by this <tt>OpenMBeanOperationInfo</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @return the return type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public OpenType<?> getReturnOpenType() ; // open MBean specific method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    // commodity methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanOperationInfo</code> instance for equality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Returns <tt>true</tt> if and only if all of the following statements are true:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * <li><var>obj</var> is non null,</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * <li><var>obj</var> also implements the <code>OpenMBeanOperationInfo</code> interface,</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * <li>their names are equal</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * <li>their signatures are equal</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * <li>their return open types are equal</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * <li>their impacts are equal</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * different implementations of the <code>OpenMBeanOperationInfo</code> interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * <br>&nbsp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param  obj  the object to be compared for equality with this <code>OpenMBeanOperationInfo</code> instance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @return  <code>true</code> if the specified object is equal to this <code>OpenMBeanOperationInfo</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    public boolean equals(Object obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Returns the hash code value for this <code>OpenMBeanOperationInfo</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * The hash code of an <code>OpenMBeanOperationInfo</code> instance is the sum of the hash codes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * of all elements of information used in <code>equals</code> comparisons
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * (ie: its name, return open type, impact and signature, where the signature hashCode is calculated by a call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *  <tt>java.util.Arrays.asList(this.getSignature).hashCode()</tt>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * This ensures that <code> t1.equals(t2) </code> implies that <code> t1.hashCode()==t2.hashCode() </code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * for any two <code>OpenMBeanOperationInfo</code> instances <code>t1</code> and <code>t2</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * as required by the general contract of the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * {@link Object#hashCode() Object.hashCode()}.
24368
2b4801b94265 8038795: Tidy warnings cleanup for javax.management
yan
parents: 5506
diff changeset
   164
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @return  the hash code value for this <code>OpenMBeanOperationInfo</code> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public int hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Returns a string representation of this <code>OpenMBeanOperationInfo</code> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * The string representation consists of the name of this class (ie <code>javax.management.openmbean.OpenMBeanOperationInfo</code>),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * and the name, signature, return open type and impact of the described operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @return  a string representation of this <code>OpenMBeanOperationInfo</code> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public String toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
}