1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
4 public class ComponentDependencyModel {
6 private String sourceId;
7 private String targetId;
8 private String relationType;
10 public String getSourceId() {
14 public void setSourceId(String sourceId) {
15 this.sourceId = sourceId;
18 public String getTargetId() {
22 public void setTargetId(String targetId) {
23 this.targetId = targetId;
26 public String getRelationType() {
30 public void setRelationType(String relationType) {
31 this.relationType = relationType;