-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYamlReader.java
More file actions
65 lines (56 loc) · 1 KB
/
YamlReader.java
File metadata and controls
65 lines (56 loc) · 1 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import java.util.List;
import java.util.Map;
public class YamlReader {
private String url;
private String testData;
private String testResult;
private String searchKey;
private String language;
private List<Map<String,String>> pageTitles;
public void setUrl(String url)
{
this.url=url;
}
public void setSearchKey(String searchKey)
{
this.searchKey=searchKey;
}
public void setLanguage(String language)
{
this.language=language;
}
public void setTestData(String testData)
{
this.testData= testData;
}
public void setTestResult(String testResult)
{
this.testResult =testResult;
}
public void setPageTitles(List<Map<String,String>> pageTitles)
{
this.pageTitles= pageTitles;
}
public String getUrl()
{
return this.url;
}
public String getLanguage()
{
return this.language;
}
public String getSearchKey()
{
return this.searchKey;
}
public String getTestData()
{ return testData;
}
public String getTestResult()
{ return testResult;
}
public List<Map<String,String>> getPageTitles()
{
return pageTitles;
}
}