blob: 19f843eb229c1019ab8a23768f9bc7f21b0686c2 [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.jpa2.flight;
import jakarta.persistence.EmbeddedId;
import jakarta.persistence.Entity;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.JoinColumns;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.Table;
@Entity
@Table(name = "TMP2_FLIGHT")
public class Flight {
public FlightId getFlightId() {
return flightId;
}
public int getPassengers() {
return passengers;
}
public Connection getConnection() {
return connection;
}
public void setFlightId(FlightId flightId) {
this.flightId = flightId;
}
public void setPassengers(int passengers) {
this.passengers = passengers;
}
public void setConnection(Connection connection) {
this.connection = connection;
}
@EmbeddedId
FlightId flightId;
int passengers;
@ManyToOne
@JoinColumns( {
@JoinColumn(name = "CARRIER_ID", referencedColumnName = "CARRIER_ID", insertable = false, updatable = false),
@JoinColumn(name = "FLIGHT_NUMBER", referencedColumnName = "FLIGHT_NUMBER", insertable = false, updatable = false) })
Connection connection;
}