org.springframework.jmx.export.metadata
Class ManagedOperationParameter

java.lang.Object
  extended by org.springframework.jmx.export.metadata.ManagedOperationParameter

public class ManagedOperationParameter
extends java.lang.Object

Metadata about JMX operation parameters. Used in conjunction with a ManagedOperation attribute.

Since:
1.2
Author:
Rob Harrop

Field Summary
private  java.lang.String description
           
private  int index
           
private  java.lang.String name
           
 
Constructor Summary
ManagedOperationParameter()
           
 
Method Summary
 java.lang.String getDescription()
          Return a description for this parameter.
 int getIndex()
          Return the index of this parameter in the operation signature.
 java.lang.String getName()
          Return the name of this parameter in the operation signature.
 void setDescription(java.lang.String description)
          Set a description for this parameter.
 void setIndex(int index)
          Set the index of this parameter in the operation signature.
 void setName(java.lang.String name)
          Set the name of this parameter in the operation signature.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

index

private int index

name

private java.lang.String name

description

private java.lang.String description
Constructor Detail

ManagedOperationParameter

public ManagedOperationParameter()
Method Detail

setIndex

public void setIndex(int index)
Set the index of this parameter in the operation signature.


getIndex

public int getIndex()
Return the index of this parameter in the operation signature.


setName

public void setName(java.lang.String name)
Set the name of this parameter in the operation signature.


getName

public java.lang.String getName()
Return the name of this parameter in the operation signature.


setDescription

public void setDescription(java.lang.String description)
Set a description for this parameter.


getDescription

public java.lang.String getDescription()
Return a description for this parameter.