Trailer has to be serializable to be cached with changesets

This commit is contained in:
René Pfeuffer
2020-06-08 12:15:23 +02:00
parent 587345bde8
commit 1ce2772a35

View File

@@ -26,8 +26,10 @@ package sonia.scm.repository;
import lombok.Value;
import java.io.Serializable;
@Value
public class Trailer {
public class Trailer implements Serializable {
private String trailerType;
private Person person;
}