* @return the ObjectName of the Component's MBean
* @throws JBIException
*/
public ObjectName activateComponent(File installDir, Component component, String description, ComponentContextImpl context,
boolean binding, boolean service, String[] sharedLibraries) throws JBIException {
ComponentNameSpace cns = context.getComponentNameSpace();
ActivationSpec activationSpec = new ActivationSpec();
activationSpec.setComponent(component);
activationSpec.setComponentName(cns.getName());
return activateComponent(installDir, component, description, context, activationSpec, false, binding, service, sharedLibraries);
}