javaee.module.backend.entities.entity.AbstractEntityHelperParent_1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-javaee-module Show documentation
Show all versions of common-javaee-module Show documentation
This Module contains common JavaEE Helper Classes.
The newest version!
package javaee.module.backend.entities.entity;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
@MappedSuperclass
abstract class AbstractEntityHelperParent_1 {
@Id
@Column( name = "ID", nullable = false )
@GeneratedValue( strategy = GenerationType.IDENTITY )
protected Long id;
}