We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05cce6d commit 2e30a35Copy full SHA for 2e30a35
src/main/java/org/springframework/data/jpa/domain/AbstractPersistable.java
@@ -33,13 +33,12 @@
33
* @author Oliver Gierke
34
* @author Thomas Darimont
35
* @author Mark Paluch
36
+ * @author Greg Turnquist
37
* @param <PK> the type of the identifier.
38
*/
39
@MappedSuperclass
40
public abstract class AbstractPersistable<PK extends Serializable> implements Persistable<PK> {
41
- private static final long serialVersionUID = -5554308939380869754L;
42
-
43
@Id @GeneratedValue private @Nullable PK id;
44
45
/*
0 commit comments