Package org.apache.catalina.ant.jmx
Class Arg
- java.lang.Object
-
- org.apache.catalina.ant.jmx.Arg
-
public class Arg extends java.lang.ObjectRepresents a single argument for JMX operations.
-
-
Constructor Summary
Constructors Constructor Description Arg()Constructs a new Arg.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetType()Returns the argument type.java.lang.StringgetValue()Returns the argument value.voidsetType(java.lang.String type)Sets the argument type.voidsetValue(java.lang.String value)Sets the argument value.
-
-
-
Method Detail
-
setType
public void setType(java.lang.String type)
Sets the argument type.- Parameters:
type- the argument type
-
setValue
public void setValue(java.lang.String value)
Sets the argument value.- Parameters:
value- the argument value
-
getValue
public java.lang.String getValue()
Returns the argument value.- Returns:
- the argument value
-
getType
public java.lang.String getType()
Returns the argument type.- Returns:
- the argument type
-
-