blob: b94cbe42a4daa2ad16639111503542ce8708c073 [file] [log] [blame]
/*
* Copyright (c) 2018, 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.jpa.collection.model;
import java.util.Map;
import jakarta.persistence.CollectionTable;
import jakarta.persistence.Column;
import jakarta.persistence.ElementCollection;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.Table;
@Entity
@Table(name = "MAIN_ENTITY")
public class MainEntity {
@Id
@Column(name = "ID")
public long id;
@ElementCollection(fetch = FetchType.LAZY)
@CollectionTable(name = "PARAMS", joinColumns = {
@JoinColumn(name = "MAIN_ENTITY_ID", referencedColumnName = "ID") })
@Column(name = "VALUE")
public Map<Param, String> params;
}