/[projects]/dao/DaoAdresseService/src/dk/daoas/daoadresseservice/admin/ServiceConfig.java
ViewVC logotype

Contents of /dao/DaoAdresseService/src/dk/daoas/daoadresseservice/admin/ServiceConfig.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2368 - (show annotations) (download)
Tue Feb 24 13:00:46 2015 UTC (9 years, 2 months ago) by torben
File size: 708 byte(s)
Load nominatim Base url from config
1 package dk.daoas.daoadresseservice.admin;
2
3 import dk.thoerup.circuitbreaker.config.BreakerConfig;
4 import dk.thoerup.webconfig.ConfigVariable;
5
6
7
8 public class ServiceConfig implements BreakerConfig {
9
10 @ConfigVariable
11 public boolean useGoogle;
12
13 @ConfigVariable
14 public boolean useOpenStreetMaps;
15
16 @ConfigVariable
17 public int osmTimeout;
18
19 @ConfigVariable(mandatory=false, readonly=true)
20 public String googleApiUser;
21
22 @ConfigVariable(mandatory=false, hideValue=true)
23 public String googleApiKey;
24
25 @ConfigVariable
26 public String nominatimBase;
27
28 @Override
29 public int getTimeout() {
30 return 60000;
31 }
32
33 @Override
34 public int getTreshold() {
35 return 5;
36 }
37
38 }

  ViewVC Help
Powered by ViewVC 1.1.20