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 / QuestionnaireDto.java
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3 import java.util.HashMap;
4
5 /**
6  * Created by ayalaben on 9/26/2017
7  */
8 public class QuestionnaireDto {
9
10   private String id;
11
12   public HashMap<String, String> getQuestionareData() {
13     return questionareData;
14   }
15
16   public void setQuestionareData(HashMap<String, String> questionareData) {
17     this.questionareData = questionareData;
18   }
19
20   private HashMap<String,String> questionareData;
21
22   public String getId() {
23     return id;
24   }
25
26   public void setId(String id) {
27     this.id = id;
28   }
29
30 }