blob: b8023d8982bda3a30d9d2fe19f159b1df710c2a0 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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.fieldaccess.advanced;
import java.io.Serializable;
import jakarta.persistence.*;
import static jakarta.persistence.CascadeType.*;
@Entity(name = "PartnerLink")
@Table(name = "CMP3_FA_MW")
@IdClass(PartnerLinkPK.class)
public class PartnerLink implements Serializable {
@Id
@Column(name = "M", insertable = false, updatable = false)
private Integer manId;
@Id
@Column(name = "W", insertable = false, updatable = false)
private Integer womanId;
@OneToOne(cascade = PERSIST, fetch = FetchType.LAZY)
@JoinColumn(name = "M")
private Man man;
@OneToOne(cascade = PERSIST, fetch = FetchType.LAZY)
@JoinColumn(name = "W")
private Woman woman;
public PartnerLink() {
}
public Man getMan() {
return man;
}
public Integer getManId() {
manId = (getMan() == null) ? null : getMan().getId();
return manId;
}
public Woman getWoman() {
return woman;
}
public Integer getWomanId() {
womanId = (getWoman() == null) ? null : getWoman().getId();
return womanId;
}
public void setMan(Man man) {
this.man = man;
}
public void setManId(Integer manId) {
}
public void setWoman(Woman woman) {
this.woman = woman;
}
public void setWomanId(Integer womanId) {
}
}