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