-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathconfiguration.properties
83 lines (66 loc) · 2.82 KB
/
configuration.properties
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
############################################################
# SdmxClient Configuration File
############################################################
SDMX.level = INFO
### Logging configuration
handlers= java.util.logging.ConsoleHandler
# to set a file handler
#handlers= java.util.logging.FileHandler
#java.util.logging.FileHandler.pattern =
#java.util.logging.FileHandler.limit =
#java.util.logging.FileHandler.count =
#java.util.logging.FileHandler.append =
java.util.logging.ConsoleHandler.level = INFO
#java.util.logging.ConsoleHandler.level = FINEST
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
#### Network configuration
# default proxy handling: all calls will be routed to this proxy unless
# specifically configured
#http.proxy.default = hostname:port
# specific proxy for some providers
#http.proxy.name0 = hostname:port
#http.proxy.name0.urls = provider_url1,provider_url2
# by default, no proxy authentication is configured.
# Depending on your proxy support, you can choose between:
# kerberos proxy authentication
#http.auth.preference = Kerberos
#java.security.krb5.conf =
#java.security.auth.login.config =
# basic proxy authentication
#http.auth.preference = basic
# if user and pw are not set, you will be prompted
#http.auth.user =
#http.auth.pw
### Providers settings
# Sdmx Connectors comes with appropriate defaults for the builtin providers.
# If you need to overwrite the defaults, the properties below can be used.
# Please replace PROVIDER_ID with the id of the provider you wish to change (e.g. ECB, ISTAT, OECD, etc.).
# providers.PROVIDER_ID.name = YOUR_NAME
# providers.PROVIDER_ID.endpoint = YOUR_ENDPOINT
# providers.PROVIDER_ID.needsCredentials = false
# providers.PROVIDER_ID.needsURLEncoding = false
# providers.PROVIDER_ID.supportsCompression = true
# providers.PROVIDER_ID.read.timeout = 10000
# providers.PROVIDER_ID.connect.timeout = 10000
# providers.PROVIDER_ID.description = YOUR_DESCRIPTION
# If you want to add a new provider, you can do it using the external.providers key.
#external.providers = TEST1,TEST2
#providers.TEST1.endpoint = <TEST1 URL>
#providers.TEST2.endpoint = <TEST2 URL>
# the remaining provider keys(see above) can be set, but they are not mandatory
### Other settings
# to override the desired language priority for SDMX metadata
# sdmx.lang = it,fr,en
# to change time series order in excel
#reverse.dump=true
# to have the results in a table in excel (instead of a list of time series)
#table.dump=true
# to save the incoming data in XML format somewhere on disk
#xml.dump.prefix=/full/path/to/local/directory
# to override default timeouts (in milliseconds)
#connect.timeout=10000
#read.timeout=10000
# for dimensions and attributes get code ids, descriptions or both
#handle.sdmx.codes = code
#handle.sdmx.codes = description
#handle.sdmx.codes = both