[LIB-13] Add new scanner settings
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / json / JSONSettings.java
index d4fa8cc..474acbe 100644 (file)
@@ -54,6 +54,9 @@ public class JSONSettings implements Settings {
     @SerializedName("gameQueryParams")
     private String gameQueryParams;
 
+    @SerializedName("gameUrlRegex")
+    private String gameUrlRegex;
+
     @Override
     public String getTournamentUrl() {
         return tournamentUrl;
@@ -99,4 +102,9 @@ public class JSONSettings implements Settings {
         return gameQueryParams;
     }
 
+    @Override
+    public String getGameUrlRegex() {
+        return gameUrlRegex;
+    }
+
 }