Coverity Scan issues fix
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnChatLogs.java
index ab24e29..d57bfd3 100644 (file)
 
 package org.onap.portal.domain.db.fn;
 
+import java.io.Serializable;
 import java.time.LocalDateTime;
 import javax.persistence.Column;
 import javax.persistence.Entity;
-import javax.persistence.GeneratedValue;
-import javax.persistence.GenerationType;
 import javax.persistence.Id;
 import javax.persistence.Table;
 import javax.validation.constraints.Size;
@@ -71,7 +70,7 @@ CREATE TABLE `fn_chat_logs` (
 @Getter
 @Setter
 @Entity
-public class FnChatLogs {
+public class FnChatLogs implements Serializable {
        @Id
        @Column(name = "chat_log_id", nullable = false)
        private Long chatLogId;