[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / informationArtifact / InformationArtifactData.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.sdc.vendorsoftwareproduct.informationArtifact;
22
23
24 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
25 import org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.component.ComponentQuestionnaire;
26 import org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.nic.NicQuestionnaire;
27 import org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.vsp.VspQuestionnaire;
28
29 import java.util.List;
30
31 /**
32  * Created by TALIO on 11/22/2016
33  */
34 public class InformationArtifactData {
35     private VspDetails vspDetails;
36     private VspQuestionnaire vspQuestionnaire;
37     private List<ComponentQuestionnaire> componentQuestionnaires;
38     private List<NicQuestionnaire> nicQuestionnaires;
39
40
41     public InformationArtifactData(VspDetails vspDetails, VspQuestionnaire vspQuestionnaire, List<ComponentQuestionnaire> componentQuestionnaires, List<NicQuestionnaire> nicQuestionnaires) {
42         this.vspDetails = vspDetails;
43         this.vspQuestionnaire = vspQuestionnaire;
44         this.componentQuestionnaires = componentQuestionnaires;
45         this.nicQuestionnaires = nicQuestionnaires;
46     }
47
48   public InformationArtifactData() {
49
50   }
51
52   public VspQuestionnaire getVspQuestionnaire() {
53         return vspQuestionnaire;
54     }
55
56     public void setVspQuestionnaire(VspQuestionnaire vspQuestionnaire) {
57         this.vspQuestionnaire = vspQuestionnaire;
58     }
59
60     public List<ComponentQuestionnaire> getComponentQuestionnaires() {
61         return componentQuestionnaires;
62     }
63
64     public void setComponentQuestionnaires(List<ComponentQuestionnaire> componentQuestionnaires) {
65         this.componentQuestionnaires = componentQuestionnaires;
66     }
67
68     public List<NicQuestionnaire> getNicQuestionnaires() {
69         return nicQuestionnaires;
70     }
71
72     public void setNicQuestionnaires(List<NicQuestionnaire> nicQuestionnaires) {
73         this.nicQuestionnaires = nicQuestionnaires;
74     }
75
76     public VspDetails getVspDetails() {
77         return vspDetails;
78     }
79
80     public void setVspDetails(VspDetails vspDetails) {
81         this.vspDetails = vspDetails;
82     }
83 }