summaryrefslogtreecommitdiff
path: root/src/main/resources/config.json
blob: c705536916fb8379fec9816a52e3e049723309b2 (plain)
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
{
  "browser": {
    "url": "https://google.com/"
  },
  "randomTextGenerator": {
    "lettersLowerBound": "97",
    "lettersUpperBound": "122",
    "length": "10"
  },
  "integerUtils": {
    "randomNumberMin": "0",
    "randomNumberMax": "101"
  },
  "httpUrlConnection": {
    "connectTimeout": "5000",
    "readTimeout": "5000"
  },
  "database": {
    "name": "union_reporting",
    "driver": "com.mysql.cj.jdbc.Driver",
    "url": "jdbc:mysql://localhost:3306",
    "user": {
      "name": "root",
      "password": "root"
    }
  }
}