Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 54acab242cf98bef0a7f6a061d6e05dbe6a03e64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * 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();
}

Back to the top