org.tkit.quarkus.jpa.test.TestProject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-jpa-tests Show documentation
Show all versions of tkit-quarkus-jpa-tests Show documentation
Module that contains tkit-quarkus-jpa related tests
The newest version!
package org.tkit.quarkus.jpa.test;
import java.util.UUID;
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;
import org.tkit.quarkus.jpa.models.AbstractTraceableEntity;
@MappedSuperclass
public class TestProject extends AbstractTraceableEntity {
@Id
private String key = UUID.randomUUID().toString();
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
}