We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c123b57 commit 9814afbCopy full SHA for 9814afb
src/main/java/io/openapitools/jackson/dataformat/hal/HALLink.java
@@ -1,5 +1,6 @@
1
package io.openapitools.jackson.dataformat.hal;
2
3
+import java.io.Serializable;
4
import java.net.URI;
5
import java.net.URL;
6
@@ -18,7 +19,8 @@
18
19
* aspect in the link object, here named {@code seen}. Due to the HyperText Cache Pattern it is included in the link.
20
*/
21
@JsonInclude(JsonInclude.Include.NON_NULL)
-public class HALLink {
22
+public class HALLink implements Serializable {
23
+ private static final long serialVersionUID = 1L;
24
25
private String href;
26
private Boolean templated;
0 commit comments