blob: bbc0f17ddfbd1332cc5a4e34937c08666f634bcf [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:
// Oracle - initial API and implementation from Oracle TopLink
// 04/07/2012-2.5 Guy Pelletier
// - 384275: Customizer from a mapped superclass is not overridden by an entity customizer
package org.eclipse.persistence.testing.models.jpa.inheritance;
import static jakarta.persistence.InheritanceType.JOINED;
import jakarta.persistence.Inheritance;
import jakarta.persistence.Entity;
import jakarta.persistence.Table;
import jakarta.persistence.EmbeddedId;
import org.eclipse.persistence.annotations.Customizer;
import org.eclipse.persistence.config.DescriptorCustomizer;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import java.io.Serializable;
@Entity
@Table(name="CMP3_COMPUTER")
@Inheritance(strategy=JOINED)
@Customizer(Computer.class)
public class Computer extends ComputerSuperclass implements Serializable, DescriptorCustomizer {
private ComputerPK computerPK;
public Computer() {
}
@Override
public void customize(ClassDescriptor descriptor) {
descriptor.getInheritancePolicy().setShouldOuterJoinSubclasses(true);
}
public Computer(ComputerPK computerPK) {
this.computerPK = computerPK;
}
@EmbeddedId
public ComputerPK getComputerPK() {
return computerPK;
}
public void setComputerPK(ComputerPK computerPK) {
this.computerPK = computerPK;
}
}