Example usage for org.hibernate.jpa HibernatePersistenceProvider subclass-usage

List of usage examples for org.hibernate.jpa HibernatePersistenceProvider subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.jpa HibernatePersistenceProvider subclass-usage.

Usage

From source file com.eucalyptus.entities.impl.EucalyptusPersistenceProvider.java

/**
 *
 */
public class EucalyptusPersistenceProvider extends HibernatePersistenceProvider {

    /**

From source file net.sf.mmm.persistence.impl.hibernate.HibernatePersistenceProviderWithGenericDatatypeSupport.java

/**
 * TODO: this class ...
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.1.0
 */

From source file org.lightmare.jpa.hibernate.jpa.HibernatePersistenceProviderExt.java

/**
 * Implementation of {@link HibernatePersistenceProvider} with additional
 * configuration
 * 
 * @author Steve Ebersole, Levan Tsinadze
 * @Since 0.1.0

From source file org.rapidoid.jpa.CustomHibernatePersistenceProvider.java

@Authors("Nikolche Mihajlovski")
@Since("5.1.0")
public class CustomHibernatePersistenceProvider extends HibernatePersistenceProvider {

    private final List<String> names = U.list();

From source file org.rapidoid.jpa.impl.CustomHibernatePersistenceProvider.java

@Authors("Nikolche Mihajlovski")
@Since("5.1.0")
public class CustomHibernatePersistenceProvider extends HibernatePersistenceProvider {

    private final List<String> names = U.list();

From source file org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.java

/**
 * Spring-specific subclass of the standard {@link HibernatePersistenceProvider}
 * from the {@code org.hibernate.jpa} package, adding support for
 * {@link SmartPersistenceUnitInfo#getManagedPackages()}.
 *
 * <p>Compatible with Hibernate 4.3. {@link SpringHibernateEjbPersistenceProvider}

From source file org.squashtest.tm.service.internal.hibernate.UberCustomPersistenceProvider.java

/**
 * <p>
 *    This class must create an EntityManagerFactory that rely on our definition of a SessionFactory. Indeed we need to provide
 * the session factory with extra functions and it must be done before the session factory is created.
 * It is done by stuffing the HibernateConfiguration with our code (@see #{SquashEntityManagerFactoryBuilderImpl}).  </p>
 * 

From source file org.unitils.orm.jpa.util.provider.hibernate.UnitilsHibernatePersistenceProvider.java

/**
 * Subclass of hibernate's own implementation of <code>javax.persistence.spi.PersistenceProvider</code>.
 * Enables getting hold on the <code>org.hibernate.ejb.Ejb3Configuration</code> object that was used for
 * configuring the <code>EntityManagerFactory</code> after it was created.
 *  
 * @author Filip Neven