/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id$ */ package org.eclipse.ecr.runtime.api; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.eclipse.ecr.runtime.model.ComponentContext; import org.eclipse.ecr.runtime.model.ComponentInstance; import org.eclipse.ecr.runtime.model.ComponentName; import org.eclipse.ecr.runtime.model.DefaultComponent; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * */ public class ServiceManagement extends DefaultComponent { private static final Log log = LogFactory.getLog(ServiceManagement.class); public static final ComponentName NAME = new ComponentName("org.eclipse.ecr.runtime.api.ServiceManagement"); private ServiceManager manager; @Override public void activate(ComponentContext context) throws Exception { manager = ServiceManager.getInstance(); } @Override public void deactivate(ComponentContext context) throws Exception { manager = null; } @Override public void registerContribution(Object contribution, String extensionPoint, ComponentInstance contributor) { if (extensionPoint.equals("servers")) { try { manager.registerServer((ServiceHost) contribution); } catch (Exception e) { log.error(e, e); } } else if (extensionPoint.equals("services")) { manager.registerService((ServiceDescriptor) contribution); } } @Override public void unregisterContribution(Object contribution, String extensionPoint, ComponentInstance contributor) { if (extensionPoint.equals("servers")) { manager.unregisterServer((ServiceHost) contribution); } else if (extensionPoint.equals("services")) { manager.unregisterService((ServiceDescriptor) contribution); } } @Override @SuppressWarnings("unchecked") public <T> T getAdapter(Class<T> adapter) { if (ServiceManager.class.isAssignableFrom(adapter)) { return (T) manager; } return null; } }