aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/controllers/ToscaParserMockHelper.java
blob: 317c8e50555f8f8e55263c8240eee6086090cec1 (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
31
32
33
34
35
36
37
38
39
40
41
42
package org.onap.vid.controllers;

import org.onap.vid.model.NewServiceModel;

/**
 * Created by moriya1 on 04/07/2017.
 */
public class ToscaParserMockHelper {

    private String uuid;
    private String filePath;
    private NewServiceModel newServiceModel;

    public ToscaParserMockHelper(String uuid, String filePath) {
        this.uuid = uuid;
        this.filePath = filePath;
    }

    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }

    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    public NewServiceModel getNewServiceModel() {
        return newServiceModel;
    }

    public void setNewServiceModel(NewServiceModel newServiceModel) {
        this.newServiceModel = newServiceModel;
    }
}