/******************************************************************************* * Copyright (C) 2012 Angelo Zerr <angelo.zerr@gmail.com>, Pascal Leclercq <pascal.leclercq@gmail.com> * 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: * Angelo ZERR - initial API and implementation * Pascal Leclercq - initial API and implementation *******************************************************************************/ package fr.opensagres.nosql.ide.core.extensions; import java.util.Collection; /** * Server runner registry. * */ public interface IServerRunnerRegistry extends IRegistry { /** * Return the {@link IServerRunnerType} retrieved by the given id. * * @param id * @return */ IServerRunnerType getRunnerType(String id); /** * Return the list of the {@link IServerRunnerType}. * * @return */ Collection<IServerRunnerType> getRunners(); }