Add collaboration feature
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / ComponentDependencyResponseDto.java
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3 public class ComponentDependencyResponseDto {
4
5   private String sourceId;
6   private String targetId;
7   private String relationType;
8   private String id;
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
34   public String getId() {
35     return id;
36   }
37
38   public void setId(String id) {
39     this.id = id;
40   }
41 }