097a00dad4225ac6ccb7b9850778b983304bec6e
[sdc.git] /
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3
4 public class ComponentDependencyModel {
5
6   private String sourceId;
7   private String targetId;
8   private String relationType;
9
10   public String getSourceId() {
11     return sourceId;
12   }
13
14   public void setSourceId(String sourceId) {
15     this.sourceId = sourceId;
16   }
17
18   public String getTargetId() {
19     return targetId;
20   }
21
22   public void setTargetId(String targetId) {
23     this.targetId = targetId;
24   }
25
26   public String getRelationType() {
27     return relationType;
28   }
29
30   public void setRelationType(String relationType) {
31     this.relationType = relationType;
32   }
33 }