All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.impetus.kundera.configure.AbstractSchemaConfiguration Maven / Gradle / Ivy

There is a newer version: 3.13
Show newest version
package com.impetus.kundera.configure;

import java.util.Map;

import com.impetus.kundera.persistence.EntityManagerFactoryImpl.KunderaMetadata;

public abstract class AbstractSchemaConfiguration
{

    /** Holding instance for persistence units. */
    protected String[] persistenceUnits;

    /** Holding persistenceUnit properties */
    protected Map externalPropertyMap;

    protected KunderaMetadata kunderaMetadata;

    public AbstractSchemaConfiguration(final String[] persistenceUnits, final Map externalPropertyMap,
            final KunderaMetadata kunderaMetadata)
    {
        this.persistenceUnits = persistenceUnits;
        this.externalPropertyMap = externalPropertyMap;
        this.kunderaMetadata = kunderaMetadata;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy