Methods Summary |
---|
public void | execute()Execute the requested operation.
super.execute();
if (bean == null || attribute == null || value == null) {
throw new BuildException
("Must specify 'bean', 'attribute' and 'value' attributes");
}
log("Setting attribute " + attribute +
" in bean " + bean +
" to " + value);
execute("/jmxproxy/?set=" + bean
+ "&att=" + attribute
+ "&val=" + value);
|
public java.lang.String | getAttribute()Get method for the attribute name
return this.attribute;
|
public java.lang.String | getBean()Get method for the bean name
// Public Methods
return this.bean;
|
public java.lang.String | getValue()Get method for the attribute value
return this.value;
|
public void | setAttribute(java.lang.String attribute)Set method for the attribute name
this.attribute = attribute;
|
public void | setBean(java.lang.String bean)Set method for the bean name
this.bean = bean;
|
public void | setValue(java.lang.String value)Set method for the attribute value
this.value = value;
|