org.springframework.jmx.export.metadata
Class ManagedOperationParameter

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

public class ManagedOperationParameter
extends Object

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

Since:
1.2
Author:
Rob Harrop
See Also:
ManagedOperation

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

Constructor Detail

ManagedOperationParameter

public ManagedOperationParameter()
Method Detail

setIndex

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


getIndex

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


setName

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


getName

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


setDescription

public void setDescription(String description)

getDescription

public String getDescription()


Copyright (c) 2002-2007 The Spring Framework Project.