*/
public ObjectName activateComponent(File installationDir, Component component, String description,
ComponentContextImpl context, ActivationSpec activationSpec, boolean pojo, boolean binding, boolean service)
throws JBIException {
ObjectName result = null;
ComponentNameSpace cns = new ComponentNameSpace(getName(), activationSpec.getComponentName(), activationSpec.getId());
log.info("Activating component for: " + cns + " with service: " + activationSpec.getService() + " component: "
+ component);
DeliveryChannelImpl dc = new DeliveryChannelImpl(this, activationSpec.getComponentName());
LocalComponentConnector lcc = registry.registerComponent(cns, description, component, dc, binding, service);
if (lcc != null) {