public void execute() throws BuildException {
if (componentName == null) {
throw new BuildException("null componentName");
}
try {
ManagementContextMBean is = getManagementContext();
is.shutDownComponent(componentName);
}
catch (IOException e) {
log.error("Caught an exception shutting down component", e);
throw new BuildException(e);
}