blob: 93e7ce45ccbb8b4bfc9e1de07ab9d27451070e90 [file] [log] [blame]
/*
* Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018 IBM Corporation. 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:
// 10/01/2018: Will Dazey
// - #253: Add support for embedded constructor results with CriteriaBuilder
package org.eclipse.persistence.jpa.test.criteria.model;
import jakarta.persistence.*;
@Entity
public class L1 {
@Id @Column(name="ID")
private Integer id;
@Column(name="NAME")
private String name;
@ManyToOne
@JoinColumn(name="ID_L2", referencedColumnName="ID")
private L2 l2;
public L1() {}
public L1(Integer id, String name, L2 l2) {
this.id = id;
this.name = name;
this.l2 = l2;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public L2 getL2() {
return l2;
}
public void setL2(L2 l2) {
this.l2 = l2;
}
}