blob: fab2e7dc008c6cc6d0053dd474859468dcd031a7 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.models.jpa.xml.merge.advanced;
import jakarta.persistence.*;
/**
* This class is used to test XML and annotation merging. This class is mapped
* in: eclipselink-xml-merge-model/orm-annotation-merge-advanced-entity-mappings.xml
*
* This class is currently marked as metadata-complete=true meaning all the
* annotations defined here should be ignored (somewhat defeating the purpose
* of XML and Annotation merging testing)
*
* Also there are no automated tests that go along with these models, see the
* test suite: EntityMappingsMergeAdvancedJUnitTestCase. It tests through
* inspecting descriptor settings only and by no means does extensive
* validation of all the metadata and defaults.
*/
@Entity(name="AnnMergeSmallProject")
@Table(name="CMP3_ANN_MERGE_PROJECT")
@DiscriminatorValue("2")
public class SmallProject extends Project {
}