[SDC-29] Amdocs OnBoard 1707 initial commit.
[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 / ComponentDependencyModel.java
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3
4 import org.hibernate.validator.constraints.NotBlank;
5
6 public class ComponentDependencyModel {
7
8   private String sourceId;
9   private String targetId;
10   private String relationType;
11
12   public String getSourceId() {
13     return sourceId;
14   }
15
16   public void setSourceId(String sourceId) {
17     this.sourceId = sourceId;
18   }
19
20   public String getTargetId() {
21     return targetId;
22   }
23
24   public void setTargetId(String targetId) {
25     this.targetId = targetId;
26   }
27
28   public String getRelationType() {
29     return relationType;
30   }
31
32   public void setRelationType(String relationType) {
33     this.relationType = relationType;
34   }
35 }