Skip to content

Commit

Permalink
added serialVersionUID to serializable classes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwomeara committed Jul 18, 2024
1 parent cf20bbc commit 0c4bd6d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
* Represents the status of an audit replay. File status is listed on a per-file basis.
*/
public class Status implements Serializable {

private static final long serialVersionUID = 5090967818014506871L;

public enum ReplayState {
CREATED, RUNNING, STOPPED, FINISHED, FAILED
}
Expand Down Expand Up @@ -91,6 +92,8 @@ public String toString() {
}

public static final class FileStatus implements Serializable {
private static final long serialVersionUID = 3057248386635077592L;

private FileState state;
private String pathUri;
private long linesRead;
Expand Down

0 comments on commit 0c4bd6d

Please sign in to comment.