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 / VspDetailsDto.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
22
23 import io.swagger.annotations.ApiModel;
24 import org.openecomp.sdc.heat.datatypes.structure.ValidationStructureList;
25
26 /**
27  * Created by TALIO on 4/25/2016.
28  */
29 @ApiModel(value = "VspDetails")
30 public class VspDetailsDto extends VspRequestDto {
31
32   private String id;
33   private String version;
34   private ValidationStructureList validationData;
35   private String candidateOnboardingOrigin;
36   private String onboardingOrigin;
37   private String networkPackageName;
38
39   public String getId() {
40     return id;
41   }
42
43   public void setId(String id) {
44     this.id = id;
45   }
46
47   public String getVersion() {
48     return version;
49   }
50
51   public void setVersion(String version) {
52     this.version = version;
53   }
54
55   public ValidationStructureList getValidationData() {
56     return validationData;
57   }
58
59   public void setValidationData(ValidationStructureList validationData) {
60     this.validationData = validationData;
61   }
62
63   public String getCandidateOnboardingOrigin() {
64     return candidateOnboardingOrigin;
65   }
66
67   public void setCandidateOnboardingOrigin(String candidateOnboardingOrigin) {
68     this.candidateOnboardingOrigin = candidateOnboardingOrigin;
69   }
70
71   public String getOnboardingOrigin() {
72     return onboardingOrigin;
73   }
74
75   public void setOnboardingOrigin(String onboardingOrigin) {
76     this.onboardingOrigin = onboardingOrigin;
77   }
78
79   public String getNetworkPackageName() {
80     return networkPackageName;
81   }
82
83   public void setNetworkPackageName(String networkPackageName) {
84     this.networkPackageName = networkPackageName;
85   }
86 }