[LIB-8] Update Copyright
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / json / JsonIdEntity.java
index 6b6c213..4ee0c88 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.
 
 package org.hedgecode.snooker.json;
 
+import java.io.Serializable;
+
 import org.hedgecode.snooker.api.IdEntity;
 
 /**
- * Abstract Entity to JSON deserialize.
+ * Abstract ID Entity to JSON deserialize.
  *
  * @author Dmitry Samoshin aka gotty
  */
-public abstract class JsonIdEntity implements IdEntity, JsonSerializable {
-
+public abstract class JsonIdEntity
+        extends JsonURLEntity
+        implements IdEntity, Serializable
+{
     @Override
     public boolean equals(Object obj) {
         if (this == obj)