/******************************************************************************* * Copyright (c) 2005, 2015 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 javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.IdClass; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @IdClass(TaskPrimaryKeyClass.class) @Table(name = "TMP_TASK") public class Task { @Id @Column(name = "PROJ_ID", insertable = false, updatable = false) Integer projectId; @Id @Column(name = "TASK_ID") int taskId; String description; @ManyToOne @JoinColumn(name = "PROJ_ID") Project project; public Task() { } public Task(Integer theProjectId, int theTaskId) { projectId = theProjectId; taskId = theTaskId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Integer getProjectId() { return projectId; } public void setProjectId(Integer projectId) { this.projectId = projectId; } public int getTaskId() { return taskId; } public void setTaskId(int taskId) { this.taskId = taskId; } public Project getProject() { return project; } public void setProject(Project project) { this.project = project; } }