blob: 0c8a9bb58d4d6a185c6c3b36ed5099013e1da637 [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:
// dminsky - initial implementation
package org.eclipse.persistence.testing.models.jpa.inheritance;
import jakarta.persistence.Column;
import jakarta.persistence.DiscriminatorColumn;
import jakarta.persistence.DiscriminatorType;
import jakarta.persistence.DiscriminatorValue;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Inheritance;
import jakarta.persistence.InheritanceType;
import jakarta.persistence.Table;
@Entity
@Table(name="JPA_JOINED_SUPERCLASS")
@Inheritance(strategy=InheritanceType.JOINED)
@DiscriminatorColumn(name="CLASSTYPE", discriminatorType=DiscriminatorType.STRING, length=3)
@DiscriminatorValue(value="SUP")
public class SuperclassEntityJoined {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name="ID", nullable=false)
protected long id;
@Column(name="SUPERCLASS_ATTRIBUTE", nullable=false)
protected String superclassAttribute;
public SuperclassEntityJoined() {
super();
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getSuperclassAttribute() {
return this.superclassAttribute;
}
public void setSuperclassAttribute(String superclassAttribute) {
this.superclassAttribute = superclassAttribute;
}
@Override
public String toString() {
return getClass().getSimpleName() + " id:" + getId() + " hashcode: " + System.identityHashCode(this);
}
}