blob: be5e69a3a7d49108d8ba345a5ea110d0bf4d97cb [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.FetchType.EAGER;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.Cacheable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
@Cacheable(true)
@Entity
@Table(name = "TMP_COSTCENTER")
public class CostCenter {
@Id
private int id;
@Basic
private String name;
@OneToMany(fetch = EAGER, mappedBy = "costCenter")
private List<Employee> employees = new ArrayList<Employee>();
public CostCenter() {
}
public CostCenter(int aId, String aName) {
id = aId;
name = aName;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Employee> getEmployees() {
return employees;
}
public void setEmployees(List<Employee> employees) {
this.employees = employees;
}
public void addEmployee(Employee emp) {
employees.add(emp);
}
}