blob: c991b38d8d347b020a34cf9357439a3254ad315f [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
package org.eclipse.persistence.testing.models.jpa.xml.inheritance;
import java.io.*;
/**
* This tests;
* <ul>
* <li> the init problem
* <li> class name indicator usage
* <li> concreate root class
* <li> big int as primary key
* </ul>
*/
public class Person implements Serializable {
public Number id;
public String name;
public Car car;
public Boat boat;
public Engineer bestFriend;
public Lawyer representitive;
public Number getId() {
return id;
}
public void setId(Number id) {
this.id = id;
}
public Boat getBoat() {
return boat;
}
public void setBoat(Boat boat) {
this.boat = boat;
}
public Car getCar() {
return car;
}
public void setCar(Car car) {
this.car = car;
}
public String getName() {
return name;
}
public void setName(String aName) {
name = aName;
}
public Engineer getBestFriend() {
return bestFriend;
}
public void setBestFriend(Engineer friend) {
bestFriend = friend;
}
public Lawyer getRepresentitive() {
return representitive;
}
public void setRepresentitive(Lawyer representitive) {
this.representitive = representitive;
}
public String toString() {
return this.name;
}
}