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: 2.9
Show newest version
package com.impetus.kundera.configure;

import java.util.Map;

public abstract class AbstractSchemaConfiguration
{

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy