diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-06-09 17:46:23 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-06-28 08:57:50 +0000 |
commit | def9cf3577c1a8624ecb1e3fc8deb78b9717a4e7 (patch) | |
tree | b4c84055a80739c4a9cbacd9f1d5c76a612a574d /catalog-model/src/main | |
parent | 2d63c07c6c73e5d6f5a695830c28c467d3638eca (diff) |
Fix bug
Certifying a template with two connected services results in error (using service proxy in the relationship)
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I3abd7e497ad07573a873f1b0c44de4e42141caf1
Issue-ID: SDC-4529
Diffstat (limited to 'catalog-model/src/main')
-rw-r--r-- | catalog-model/src/main/java/org/openecomp/sdc/be/model/RelationshipImpl.java | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/RelationshipImpl.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/RelationshipImpl.java index 0a6af323f3..13d33393cf 100644 --- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/RelationshipImpl.java +++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/RelationshipImpl.java @@ -19,20 +19,15 @@ */ package org.openecomp.sdc.be.model; +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter +@Setter +@ToString public class RelationshipImpl { private String type; - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - @Override - public String toString() { - return "RelationshipImpl [type=" + type + "]"; - } } |