blob: 3dbdf1642a55c3222f9fb8b1bae236b195f68e89 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// 03/27/2009-2.0 Guy Pelletier
// - 241413: JPA 2.0 Add EclipseLink support for Map type attributes
// 04/03/2009-2.0 Guy Pelletier
// - 241413: JPA 2.0 Add EclipseLink support for Map type attributes
// 11/06/2009-2.0 Guy Pelletier
// - 286317: UniqueConstraint xml element is changing (plus couple other fixes, see bug)
// 11/19/2012-2.5 Guy Pelletier
// - 389090: JPA 2.1 DDL Generation Support (foreign key metadata support)
// 11/28/2012-2.5 Guy Pelletier
// - 374688: JPA 2.1 Converter support
// 07/16/2013-2.5.1 Guy Pelletier
// - 412384: Applying Converter for parameterized basic-type for joda-time's DateTime does not work
package org.eclipse.persistence.internal.jpa.metadata.accessors.mappings;
import java.util.List;
import org.eclipse.persistence.internal.jpa.metadata.accessors.objects.MetadataClass;
import org.eclipse.persistence.internal.jpa.metadata.columns.AssociationOverrideMetadata;
import org.eclipse.persistence.internal.jpa.metadata.columns.AttributeOverrideMetadata;
import org.eclipse.persistence.internal.jpa.metadata.columns.ColumnMetadata;
import org.eclipse.persistence.internal.jpa.metadata.columns.ForeignKeyMetadata;
import org.eclipse.persistence.internal.jpa.metadata.columns.JoinColumnMetadata;
import org.eclipse.persistence.internal.jpa.metadata.converters.ConvertMetadata;
import org.eclipse.persistence.internal.jpa.metadata.mappings.MapKeyMetadata;
/**
* Interface class to define the common map mapping metadata.
*
* @see CollectionAccessor
* @see ElementCollectionAccessor
*
* @author Guy Pelletier
* @since EclipseLink 1.2
*/
public interface MappedKeyMapAccessor {
/**
* INTERNAL:
*/
List<AssociationOverrideMetadata> getMapKeyAssociationOverrides();
/**
* INTERNAL:
*/
List<AttributeOverrideMetadata> getMapKeyAttributeOverrides();
/**
* INTERNAL:
*/
MapKeyMetadata getMapKey();
/**
* INTERNAL:
*/
MetadataClass getMapKeyClass();
/**
* INTERNAL:
*/
MetadataClass getMapKeyClassWithGenerics();
/**
* INTERNAL:
*/
String getMapKeyConvert();
/**
* INTERNAL:
*/
List<ConvertMetadata> getMapKeyConverts();
/**
* INTERNAL:
*/
ColumnMetadata getMapKeyColumn();
/**
* INTERNAL:
*/
ForeignKeyMetadata getMapKeyForeignKey();
/**
* INTERNAL:
*/
List<JoinColumnMetadata> getMapKeyJoinColumns();
/**
* INTERNAL:
*/
void setMapKeyClass(MetadataClass cls);
}