blob: a25db0b33cef1459f0cdddf71200162a0d13eb2f [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.models.jpa.inheritance;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import jakarta.persistence.TableGenerator;
import static jakarta.persistence.GenerationType.TABLE;
@Entity
@Table(name="CMP3_TIRE_RATING_COMMENT")
public class TireRatingComment {
private Integer id;
private String comment;
public TireRatingComment() {}
public TireRatingComment(String comment) {
setComment(comment);
}
@Column(name="DESCRIP")
public String getComment() {
return comment;
}
@Id
@GeneratedValue(strategy=TABLE, generator="TIRE_RATING_COMMENT_TABLE_GENERATOR")
@TableGenerator(
name="TIRE_RATING_COMMENT_TABLE_GENERATOR",
table="CMP3_INHERITANCE_SEQ",
pkColumnName="SEQ_NAME",
valueColumnName="SEQ_COUNT",
pkColumnValue="TIRE_RATING_COMMENT_SEQ")
@Column(name="ID")
public Integer getId() {
return id;
}
public void setComment(String comment) {
this.comment = comment;
}
public void setId(Integer id) {
this.id = id;
}
}