Skip to content

Commit

Permalink
CDAMetadata must implement Serializable (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyGee authored Jan 6, 2023
1 parent fffe170 commit 3a246e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/com/contentful/java/cda/CDAMetadata.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.contentful.java.cda;

import java.io.Serializable;
import java.util.List;
public class CDAMetadata {
public class CDAMetadata implements Serializable {
private static final long serialVersionUID = -2852530837647649035L;
public List<CDATag> getTags() {
return tags;
}
Expand All @@ -15,4 +17,4 @@ public void setTags(List<CDATag> tags) {
public String toString() {
return "CDAMetadata{}";
}
}
}

0 comments on commit 3a246e4

Please sign in to comment.