blob: 6341cf820d457f708b831f7ed1c36dba3158cb7f [file] [log] [blame]
/*
* Copyright (c) 2005, 2020 Oracle and/or its affiliates. All rights reserved.
* 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 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:
// SAP - initial API and implementation
package org.eclipse.persistence.testing.models.wdf.jpa1.employee;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.IdClass;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import jakarta.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;
}
}