summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java
deleted file mode 100644
index 21a41c3f..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import com.fasterxml.jackson.annotation.*;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "relatedInstance"
-})
-public class RelatedInstanceList {
-
- @JsonProperty("relatedInstance")
- public RelatedInstance relatedInstance;
-
- @JsonSetter
- public RelatedInstance getRelatedInstance() {
- return relatedInstance;
- }
-
- @JsonSetter
- public void setRelatedInstance(RelatedInstance relatedInstance) {
- this.relatedInstance = relatedInstance;
- }
-}