/*************************************************************************** * Copyright (c) 2004, 2005, 2006 Eike Stepper, Germany. * 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: * Eike Stepper - initial API and implementation **************************************************************************/ package org.eclipse.emf.cdo.tests.topology; import org.eclipse.emf.cdo.client.ResourceManager; import org.eclipse.emf.ecore.resource.ResourceSet; import javax.sql.DataSource; public interface ITopology { public String getName(); public void start() throws Exception; public void stop() throws Exception; public ResourceManager createResourceManager(ResourceSet resourceSet); public DataSource getDataSource(); }