blob: 36a179109b1c88952bf1fb10bbe6cf5b98859014 (
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.controller;
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;
}
}
|