[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 / dao / type / VspQuestionnaireEntity.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.dao.type;
22
23 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityId;
24 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityType;
25 import org.openecomp.sdc.versioning.dao.types.Version;
26
27
28
29 public class VspQuestionnaireEntity implements CompositionEntity {
30   private static final String ENTITY_TYPE = "Vendor Software Product";
31
32   private String id;
33   private Version version;
34   private String questionnaireData;
35
36   public VspQuestionnaireEntity() {
37
38   }
39
40   public VspQuestionnaireEntity(String vspId, Version version) {
41     this.id = vspId;
42     this.version = version;
43   }
44
45   @Override
46   public String getEntityType() {
47     return ENTITY_TYPE;
48   }
49
50   @Override
51   public String getFirstClassCitizenId() {
52     return getId();
53   }
54
55   @Override
56   public String getId() {
57     return id;
58   }
59
60   @Override
61   public void setId(String id) {
62     this.id = id;
63   }
64
65   @Override
66   public Version getVersion() {
67     return version;
68   }
69
70   @Override
71   public void setVersion(Version version) {
72     this.version = version;
73   }
74
75   @Override
76   public CompositionEntityType getType() {
77     return CompositionEntityType.vsp;
78   }
79
80   @Override
81   public CompositionEntityId getCompositionEntityId() {
82     return new CompositionEntityId(getId(), null);
83   }
84
85   @Override
86   public String getCompositionData() {
87     return null; //none
88   }
89
90   @Override
91   public void setCompositionData(String compositionData) {
92     //none
93   }
94
95   public String getQuestionnaireData() {
96     return questionnaireData;
97   }
98
99   public void setQuestionnaireData(String questionnaireData) {
100     this.questionnaireData = questionnaireData;
101   }
102
103 }