/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * dminsky - initial API and implementation ******************************************************************************/ package org.eclipse.persistence.testing.models.jpa.advanced; import static javax.persistence.GenerationType.TABLE; import javax.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; } }