blob: 3bb25854aa1d4591c8e4158ff245517af40b7314 [file] [log] [blame]
/*
* Copyright (c) 2013, 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:
// 02/06/2013-2.5 Guy Pelletier
// - 382503: Use of @ConstructorResult with createNativeQuery(sqlString, resultSetMapping) results in NullPointerException
// 02/11/2013-2.5 Guy Pelletier
// - 365931: @JoinColumn(name="FK_DEPT",insertable = false, updatable = true) causes INSERT statement to include this data value that it is associated with
package org.eclipse.persistence.testing.models.jpa21.advanced;
import jakarta.persistence.Basic;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.OneToOne;
import jakarta.persistence.Table;
@Entity
@Table(name="JPA21_ITEM")
public class Item {
@Id
@GeneratedValue
@Column(name="ID")
private Integer itemId;
@Basic
private String name;
public Item() {}
public Integer getItemId() {
return itemId;
}
public String getName() {
return name;
}
public void setItemId(Integer id) {
this.itemId = id;
}
public void setName(String name) {
this.name = name;
}
public String toString() {
return "Item [" + getName() + "]";
}
}