[LIB-10] SerialVersionUID for Serializable classes
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / json / JsonOngoingMatch.java
index 6e5cb1d..1bbb18c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017. Developed by Hedgecode.
+ * Copyright (c) 2017-2020. Developed by Hedgecode.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,6 +16,8 @@
 
 package org.hedgecode.snooker.json;
 
+import java.io.Serializable;
+
 import org.hedgecode.snooker.api.OngoingMatch;
 
 /**
@@ -23,6 +25,11 @@ import org.hedgecode.snooker.api.OngoingMatch;
  *
  * @author Dmitry Samoshin aka gotty
  */
-public class JsonOngoingMatch extends JsonMatch implements OngoingMatch {
+public class JsonOngoingMatch extends JsonMatch implements OngoingMatch, Serializable {
+
+    private static final long serialVersionUID = -6395358544537389727L;
+
+    JsonOngoingMatch() {
+    }
 
 }