[LIB-13] Add classes to work with 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("tournamentGamesUrlRegex")
37     private String tournamentGamesUrlRegex;
38
39     @SerializedName("tournamentQuery")
40     private String tournamentQuery;
41
42     @SerializedName("tournamentQueryUrlRegex")
43     private String tournamentQueryUrlRegex;
44
45     @SerializedName("gameUrl")
46     private String gameUrl;
47
48     @SerializedName("gamePgnUrl")
49     private String gamePgnUrl;
50
51     @Override
52     public String getTournamentUrl() {
53         return tournamentUrl;
54     }
55
56     @Override
57     public boolean isTournamentMultiPage() {
58         return tournamentIsMultiPage;
59     }
60
61     @Override
62     public String getTournamentGamesUrlRegex() {
63         return tournamentGamesUrlRegex;
64     }
65
66     @Override
67     public String getTournamentQuery() {
68         return tournamentQuery;
69     }
70
71     @Override
72     public String getTournamentQueryUrlRegex() {
73         return tournamentQueryUrlRegex;
74     }
75
76     @Override
77     public String getGameUrl() {
78         return gameUrl;
79     }
80
81     @Override
82     public String getGamePgnUrl() {
83         return gamePgnUrl;
84     }
85
86 }