blob: 1545af13c9e339da939a42e38c486254aa48ecd0 [file] [log] [blame]
/***************************************************************************
* Copyright (c) 2004 - 2008 Eike Stepper, 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
* Martin Taal - added mappingProvider support
**************************************************************************/
package org.eclipse.emf.cdo.server.hibernate;
import org.eclipse.emf.cdo.server.internal.hibernate.HibernateStore;
/**
* @author Eike Stepper
* @author Martin Taal
*/
public final class CDOHibernateUtil
{
private CDOHibernateUtil()
{
}
public static IHibernateStore createStore(IHibernateMappingProvider mappingProvider)
{
return new HibernateStore(mappingProvider);
}
}