blob: 36bd215c6bb86b761e8b82f239eab9e6eb3ced7a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 SAP. 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:
* SAP - initial API and implementation
******************************************************************************/
package org.eclipse.persistence.testing.models.wdf.jpa1.employee;
import static javax.persistence.InheritanceType.JOINED;
import javax.persistence.Column;
import javax.persistence.DiscriminatorColumn;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.Table;
@Entity
@Inheritance(strategy = JOINED)
@Table(name = "TMP_ACCOUNT")
@DiscriminatorColumn(name = "TYPE")
public abstract class Account {
@Id
@Column(name = "ACC_NUMBER")
protected long number;
protected String owner;
protected double balance;
public long getNumber() {
return number;
}
public void setNumber(long number) {
this.number = number;
}
public String getOwner() {
return owner;
}
public void setOwner(String owner) {
this.owner = owner;
}
public double getBalance() {
return balance;
}
public void setBalance(double balance) {
this.balance = balance;
}
}