We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a872f0 commit 987017bCopy full SHA for 987017b
common/src/main/java/gov/cms/ab2d/common/model/Role.java
@@ -5,6 +5,8 @@
5
import lombok.Setter;
6
import org.hibernate.annotations.NaturalId;
7
8
+import java.io.Serializable;
9
+
10
import javax.persistence.Column;
11
import javax.persistence.Entity;
12
import javax.persistence.GeneratedValue;
@@ -14,7 +16,7 @@
14
16
@Getter
15
17
@Setter
18
@EqualsAndHashCode(onlyExplicitlyIncluded = true, callSuper = false)
-public class Role extends TimestampBase {
19
+public class Role extends TimestampBase implements Serializable {
20
21
public static final String SPONSOR_ROLE = "SPONSOR";
22
public static final String ADMIN_ROLE = "ADMIN";
0 commit comments