summaryrefslogtreecommitdiffstats
path: root/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
blob: cb30b50134d7fcafa1b1a691d307473407dff49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.openecomp.sdcrests.vendorsoftwareproducts.types;

import java.util.HashMap;

/**
 * Created by ayalaben on 9/26/2017
 */
public class QuestionnaireDto {

  private String id;

  public HashMap<String, String> getQuestionareData() {
    return questionareData;
  }

  public void setQuestionareData(HashMap<String, String> questionareData) {
    this.questionareData = questionareData;
  }

  private HashMap<String,String> questionareData;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

}