blob: ba8672e8f17fea95e6f7c030d841ae99712c9d25 [file] [log] [blame]
/*
* Copyright (c) 1998, 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.advanced;
import static jakarta.persistence.GenerationType.TABLE;
import jakarta.persistence.*;
@Entity
@Table(name="CMP3_PRODUCT")
public class Product {
@Id
@GeneratedValue(strategy=TABLE)
protected int id;
@Column(name="NAME", nullable=false)
protected String name;
@Column(name="COUNTRY_CODE", insertable=true, updatable=true, nullable=false, length=3)
protected String countryCode;
@Embedded
@AttributeOverrides({
@AttributeOverride(name="codeNumber", column=@Column(name="BARCODE1")),
@AttributeOverride(name="countryCode", column=@Column(name="COUNTRY_CODE", insertable=false, updatable=false))
})
protected BarCode barCode1;
@Embedded
@AttributeOverrides({
@AttributeOverride(name="codeNumber", column=@Column(name="BARCODE2")),
@AttributeOverride(name="countryCode", column=@Column(name="COUNTRY_CODE", insertable=false, updatable=false))
})
protected BarCode barCode2;
public Product() {
super();
setName("INVALIDNAME");
setCountryCode("ZZZ");
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public BarCode getBarCode1() {
return barCode1;
}
public void setBarCode1(BarCode barCode1) {
this.barCode1 = barCode1;
}
public BarCode getBarCode2() {
return barCode2;
}
public void setBarCode2(BarCode barCode2) {
this.barCode2 = barCode2;
}
}