blob: f1ee902692550a5b2e572e23ea93de515cf3baca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.eclipselink.core.resource.orm.v2_0;
import org.eclipse.jpt.core.resource.orm.v2_0.JPA2_0;
import org.eclipse.jpt.eclipselink.core.resource.orm.EclipseLink;
import org.eclipse.jpt.eclipselink.core.resource.orm.v1_1.EclipseLink1_1;
@SuppressWarnings("nls")
public interface EclipseLink2_0
extends EclipseLink1_1, JPA2_0
{
String SCHEMA_NAMESPACE = EclipseLink.SCHEMA_NAMESPACE;
String SCHEMA_LOCATION = "http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_0.xsd";
String SCHEMA_VERSION = "2.0";
// EclipseLink 2.0 specific nodes
String CORRECTION_TYPE = "correction-type";
String MAP_KEY_ASSOCIATION_OVERRIDE = "map-key-association-override";
}