| |
|
| javax.management.openmbean.OpenMBeanOperationInfo
All known Subclasses: javax.management.openmbean.OpenMBeanOperationInfoSupport,
OpenMBeanOperationInfo | public interface OpenMBeanOperationInfo (Code) | | Describes operation of an OpenMBean
version: $Revision: 1.6 $ |
equals | public boolean equals(Object obj)(Code) | | Test the specified object for equality.
This method will return true if and only if the following
conditions are true:
- obj is not null
- obj also implements OpenMBeanOperationInfo
- their names are equal
- their signatures are equal
- their return opentypes are equal
- their impacts are equal
Parameters: obj - The object being compared to boolean |
getDescription | public String getDescription()(Code) | | Returs a human readable description about this operation.
String The human readable operation description |
getImpact | public int getImpact()(Code) | | Returns a constant which qualifies the impact of the operation
being described by the OpenMBeanOperationInfo .
The return constant is one of the ff:
int The operation impact |
getName | public String getName()(Code) | | Returns the name of the operation being described by this
OpenMBeanOperationInfo
String the Operation name |
getReturnOpenType | public OpenType getReturnOpenType()(Code) | | Return the OpenType of the values returned by this OpenMBeanOperationInfo
OpenType The OpenType object |
getReturnType | public String getReturnType()(Code) | | Return the fully qualified class name of the values being
returned by this operation.
Note that getReturnType and getReturnOpenType.getClassName
should be equal.
String The fully qualified classname of the return type |
hashCode | public int hashCode()(Code) | | Returns the hashcode of this OpenMBeanOperationInfo
int The hashcode |
toString | public String toString()(Code) | | Return a String representation
|
|
|
|