blob: 216c547bb67394f0df8726e5eb635377b4c74d66 [file] [log] [blame]
/*
* Copyright (c) 2015, 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:
// dminsky - initial API and implementation
package org.eclipse.persistence.testing.models.jpa.inheritance;
import java.util.List;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.OneToMany;
import jakarta.persistence.Table;
import jakarta.persistence.Version;
/**
* Models an Entity with a unidirectional lazy 1:M reference to
* another Entity with a unidirectional lazy 1:M reference.
*/
@Entity
@Table(name="JPA_PET_STORE")
public class PetStore {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(nullable=false)
private Long id;
@Version
protected int version;
@Column(name="STORE_NAME")
private String storeName;
@OneToMany(fetch=FetchType.LAZY)
@JoinColumn(name="STORE_ID")
private List<FishTank> fishTanks;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public int getVersion() {
return version;
}
public String getStoreName() {
return storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public List<FishTank> getFishTanks() {
return this.fishTanks;
}
public void setFishTanks(List<FishTank> fishTanks) {
this.fishTanks = fishTanks;
}
}