blob: f8f43a3d0c9d75cf11184006a0806c3eedfe754b [file] [log] [blame]
/*
* Copyright (c) 2021 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:
// 04/09/2021 - Will Dazey
// - 570702 : Using embeddable fields in query JOINs
package org.eclipse.persistence.jpa.embeddable.model;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
@Entity
public class SpecPhone {
@Id
private int id;
private String vendor;
}