blob: 21165c301c0f530a562479da4a46265a48259bfa [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:
// 16/06/2010-2.2 mobrien - 316991: Attribute.getJavaMember() requires reflective getMethod call
// when only getMethodName is available on accessor for attributes of Embeddable types.
// http://wiki.eclipse.org/EclipseLink/Development/JPA_2.0/metamodel_api#DI_95:_20091017:_Attribute.getJavaMember.28.29_returns_null_for_a_BasicType_on_a_MappedSuperclass_because_of_an_uninitialized_accessor
package org.eclipse.persistence.testing.models.jpa.metamodel;
import static jakarta.persistence.GenerationType.TABLE;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.TableGenerator;
@Entity
public class EntityChildOfMSRootPropertyAccess extends MSRootPropertyAccess implements java.io.Serializable {
private static final long serialVersionUID = -3898581601728869378L;
private int id;
@Id
@GeneratedValue(strategy=TABLE, generator="EChildOfMS_MM_TABLE_GENERATOR")
@TableGenerator(
name="EChildOfMS_MM_TABLE_GENERATOR",
table="CMP3_MM_EChildOfMS_SEQ",
pkColumnName="SEQ_MM_NAME",
valueColumnName="SEQ_MM_COUNT",
pkColumnValue="CUST_MM_SEQ"
)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}