blob: 54acab242cf98bef0a7f6a061d6e05dbe6a03e64 [file] [log] [blame]
/*
* Copyright (c) 2007, 2009, 2011, 2012, 2019 Eike Stepper (Loehne, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.server;
/**
* Creates CDO {@link IRepository repositories}.
*
* @author Eike Stepper
*/
public interface IRepositoryFactory
{
/**
* @since 2.0
*/
public static final String PRODUCT_GROUP = "org.eclipse.emf.cdo.server.repositories"; //$NON-NLS-1$
public String getRepositoryType();
public IRepository createRepository();
}