blob: 74767a69a0f4c57270a406039ee05f9e2a9ec474 [file] [log] [blame]
/*
* Copyright (c) 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
package org.eclipse.persistence.jpa.returninsert.model;
import org.eclipse.persistence.annotations.ReturnInsert;
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
import jakarta.persistence.Embedded;
import java.io.Serializable;
/**
* ReturnInsertDetailEmbeddedEmbedded instance to be {@link Embedded} into other embedded entities.
*/
@Embeddable
public class ReturnInsertDetailEmbeddedEmbedded implements Serializable {
private static final long serialVersionUID = 1712864132706065027L;
@Column(name = "COL5")
private String col5;
@ReturnInsert(returnOnly = true)
@Column(name = "COL5_VIRTUAL")
private String col5Virtual;
public ReturnInsertDetailEmbeddedEmbedded() {
}
public String getCol5() {
return col5;
}
public void setCol5(String col5) {
this.col5 = col5;
}
public String getCol5Virtual() {
return col5Virtual;
}
public void setCol5Virtual(String col5Virtual) {
this.col5Virtual = col5Virtual;
}
}