blob: bbd16d1d6e84b9265efc223a1e531dc7a60add4b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.core.internal.ddlgen;
import java.util.Properties;
import org.eclipse.jpt.jpa.core.JpaProject;
import org.eclipse.jpt.jpa.db.ConnectionProfile;
import org.eclipse.jpt.jpa.eclipselink.core.context.persistence.EclipseLinkConnection;
import org.eclipse.jpt.jpa.eclipselink.core.context.persistence.EclipseLinkOutputMode;
/**
* EclipseLinkDLLGenerator launches the EclipseLink DDL generator in a separate VM.
* For this it will create a Java Configuration named "Dali EclipseLink Table Generation"
* in the target workspace (note: the configuration will be overridden at each run).
* It will than launch the configuration created with the login information from
* the current Dali project, and passes it to EclipseLink.
*
* Pre-req in PDE environment:
* org.eclipse.jpt.jpa.eclipselink.core.ddlgen.jar in ECLIPSE_HOME/plugins
*/
public class EclipseLinkDDLGenerator extends EclipseLinkAbstractDDLGenerator
{
// ********** constructors **********
public EclipseLinkDDLGenerator(String puName, JpaProject jpaProject, EclipseLinkOutputMode outputMode) {
super(puName, jpaProject, outputMode);
}
@Override
protected void buildConnectionProperties(Properties properties) {
super.buildConnectionProperties(properties);
ConnectionProfile cp = this.getConnectionProfile();
this.putProperty(properties,
EclipseLinkConnection.ECLIPSELINK_DRIVER,
(cp == null) ? "" : cp.getDriverClassName()); //$NON-NLS-1$
this.putProperty(properties,
EclipseLinkConnection.ECLIPSELINK_URL,
(cp == null) ? "" : cp.getURL()); //$NON-NLS-1$
this.putProperty(properties,
EclipseLinkConnection.ECLIPSELINK_USER,
(cp == null) ? "" : cp.getUserName()); //$NON-NLS-1$
this.putProperty(properties,
EclipseLinkConnection.ECLIPSELINK_PASSWORD,
(cp == null) ? "" : cp.getUserPassword()); //$NON-NLS-1$
}
}