[LIB-13] Add query params to settings
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / json / JSONSettings.java
1 /*
2  * Copyright (c) 2019-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.scanner.json;
18
19 import com.google.gson.annotations.SerializedName;
20
21 import org.hedgecode.chess.scanner.Settings;
22
23 /**
24  * JSONSettings
25  *
26  * @author Dmitry Samoshin aka gotty
27  */
28 public class JSONSettings implements Settings {
29
30     @SerializedName("tournamentUrl")
31     private String tournamentUrl;
32
33     @SerializedName("tournamentIsMultiPage")
34     private boolean tournamentIsMultiPage;
35
36     @SerializedName("tournamentQueryParams")
37     private String tournamentQueryParams;
38
39     @SerializedName("tournamentGamesUrlRegex")
40     private String tournamentGamesUrlRegex;
41
42     @SerializedName("tournamentQuery")
43     private String tournamentQuery;
44
45     @SerializedName("tournamentQueryUrlRegex")
46     private String tournamentQueryUrlRegex;
47
48     @SerializedName("gameUrl")
49     private String gameUrl;
50
51     @SerializedName("gamePgnUrl")
52     private String gamePgnUrl;
53
54     @SerializedName("gameQueryParams")
55     private String gameQueryParams;
56
57     @Override
58     public String getTournamentUrl() {
59         return tournamentUrl;
60     }
61
62     @Override
63     public boolean isTournamentMultiPage() {
64         return tournamentIsMultiPage;
65     }
66
67     @Override
68     public String getTournamentQueryParams() {
69         return tournamentQueryParams;
70     }
71
72     @Override
73     public String getTournamentGamesUrlRegex() {
74         return tournamentGamesUrlRegex;
75     }
76
77     @Override
78     public String getTournamentQuery() {
79         return tournamentQuery;
80     }
81
82     @Override
83     public String getTournamentQueryUrlRegex() {
84         return tournamentQueryUrlRegex;
85     }
86
87     @Override
88     public String getGameUrl() {
89         return gameUrl;
90     }
91
92     @Override
93     public String getGamePgnUrl() {
94         return gamePgnUrl;
95     }
96
97     @Override
98     public String getGameQueryParams() {
99         return gameQueryParams;
100     }
101
102 }