blob: 17ce50e3b5c0629dcf2e51ee6ba4c17c97154486 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2010 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* James Sutherland - initial API and implementation
******************************************************************************/
package org.eclipse.persistence.testing.models.jpa.inheritance;
import javax.persistence.*;
/**
* This tests having two independent subclasses sharing the same table.
* @author James Sutherland
*/
@Entity
@Table(name="CMP3_ENGINEER")
@DiscriminatorValue("4")
public class SoftwareEngineer extends Person {
private String title;
private Company company;
@ManyToOne
public Company getCompany() {
return company;
}
@Column(name="TITLE")
public String getTitle() {
return title;
}
public void setCompany(Company company) {
this.company = company;
}
public void setTitle(String title) {
this.title = title;
}
}