diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-09-08 18:03:33 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-09-08 18:06:02 -0400 |
commit | 33870212d2d9b4660fd0f3ee7ff39b804c5f911f (patch) | |
tree | 377495b448a73bc0ca040d5d08bcf1d38526ef56 /controlloop/common/model-impl | |
parent | 045198cd1a5a73ffe6630e6833e1d021585fb82f (diff) |
Set this class as serializable
Fixing sonar critical to make this simple class serializable.
Issue-ID: POLICY-115
Change-Id: I6a3cf8b1c8c27f434e26d9f2909b2ef38c72825b
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'controlloop/common/model-impl')
-rw-r--r-- | controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/RelationshipItem.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/RelationshipItem.java b/controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/RelationshipItem.java index 0cfc82ec9..8451998eb 100644 --- a/controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/RelationshipItem.java +++ b/controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/RelationshipItem.java @@ -21,11 +21,17 @@ package org.onap.policy.aai; import java.util.List; +import java.io.Serializable; import java.util.LinkedList; import com.google.gson.annotations.SerializedName; -public class RelationshipItem { +public class RelationshipItem implements Serializable { + + /** + * + */ + private static final long serialVersionUID = 1543404460741069628L; @SerializedName("related-to-property") public List<RelatedToPropertyItem> relatedToProperty = new LinkedList<RelatedToPropertyItem>(); |