blob: 058eba74f448787e3fcc61ee4d61be98d50a50ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.core.internal.context.persistence;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnit;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnitProperties;
import org.eclipse.jpt.jpa.core.internal.jpa2_1.context.persistence.schemagen.NullGenericSchemaGeneration2_1;
import org.eclipse.jpt.jpa.core.jpa2.context.persistence.PersistenceUnit2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.persistence.connection.JpaConnection2_0;
import org.eclipse.jpt.jpa.core.jpa2.context.persistence.options.JpaOptions2_0;
public class EclipseLink2_0PersistenceXmlContextNodeFactory
extends AbstractEclipseLinkPersistenceXmlContextNodeFactory {
@Override
public JpaConnection2_0 buildConnection(PersistenceUnit parent) {
return new EclipseLinkConnection2_0((PersistenceUnit2_0) parent);
}
@Override
public JpaOptions2_0 buildOptions(PersistenceUnit parent) {
return new EclipseLinkOptions2_0((PersistenceUnit2_0) parent);
}
@Override
public PersistenceUnitProperties buildLogging(PersistenceUnit parent) {
return new EclipseLinkLogging2_0((PersistenceUnit2_0) parent);
}
@Override
public PersistenceUnitProperties buildSchemaGeneration(PersistenceUnit parent) {
return new NullGenericSchemaGeneration2_1(parent);
}
}