Methods Summary |
---|
public void | execute()Execute the requested operation.
super.execute();
if (bean == null || attribute == null) {
throw new BuildException
("Must specify 'bean' and 'attribute' attributes");
}
log("Getting attribute " + attribute +
" in bean " + bean );
execute("/jmxproxy/?get=" + bean
+ "&att=" + attribute );
|
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 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;
|