org.onap migration
[vid.git] / vid-app-common / src / test / java / org / onap / vid / controller / ToscaParserMockHelper.java
1 package org.onap.vid.controller;
2
3 import org.onap.vid.model.NewServiceModel;
4
5 /**
6  * Created by moriya1 on 04/07/2017.
7  */
8 public class ToscaParserMockHelper {
9
10     private String uuid;
11     private String filePath;
12     private NewServiceModel newServiceModel;
13
14     public ToscaParserMockHelper(String uuid, String filePath) {
15         this.uuid = uuid;
16         this.filePath = filePath;
17     }
18
19     public String getUuid() {
20         return uuid;
21     }
22
23     public void setUuid(String uuid) {
24         this.uuid = uuid;
25     }
26
27     public String getFilePath() {
28         return filePath;
29     }
30
31     public void setFilePath(String filePath) {
32         this.filePath = filePath;
33     }
34
35     public NewServiceModel getNewServiceModel() {
36         return newServiceModel;
37     }
38
39     public void setNewServiceModel(NewServiceModel newServiceModel) {
40         this.newServiceModel = newServiceModel;
41     }
42 }