├── .codebeatignore ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── learning │ │ └── by │ │ └── example │ │ └── reactive │ │ └── microservices │ │ ├── application │ │ ├── ApplicationConfig.java │ │ └── ReactiveMsApplication.java │ │ ├── exceptions │ │ ├── GeoLocationNotFoundException.java │ │ ├── GetGeoLocationException.java │ │ ├── GetSunriseSunsetException.java │ │ ├── InvalidParametersException.java │ │ └── PathNotFoundException.java │ │ ├── handlers │ │ ├── ApiHandler.java │ │ ├── ErrorHandler.java │ │ └── ThrowableTranslator.java │ │ ├── model │ │ ├── ErrorResponse.java │ │ ├── GeoLocationResponse.java │ │ ├── GeoTimesResponse.java │ │ ├── GeographicCoordinates.java │ │ ├── LocationRequest.java │ │ ├── LocationResponse.java │ │ └── SunriseSunset.java │ │ ├── routers │ │ ├── ApiRouter.java │ │ ├── MainRouter.java │ │ └── StaticRouter.java │ │ └── services │ │ ├── GeoLocationService.java │ │ ├── GeoLocationServiceImpl.java │ │ ├── SunriseSunsetService.java │ │ └── SunriseSunsetServiceImpl.java └── resources │ ├── application.yaml │ ├── banner.txt │ └── public │ ├── api.yaml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map └── test ├── java └── org │ └── learning │ └── by │ └── example │ └── reactive │ └── microservices │ ├── application │ ├── ReactiveMsApplicationTest.java │ └── ReactiveMsApplicationUnitTest.java │ ├── handlers │ ├── ApiHandlerTest.java │ ├── ErrorHandlerTest.java │ └── ThrowableTranslatorTest.java │ ├── model │ └── WrongRequest.java │ ├── routers │ ├── ApiRouterTest.java │ ├── MainRouterTest.java │ └── StaticRouterTest.java │ ├── services │ ├── GeoLocationServiceImplTest.java │ └── SunriseSunsetServiceImplTest.java │ └── test │ ├── BasicIntegrationTest.java │ ├── HandlersHelper.java │ ├── RestServiceHelper.java │ └── tags │ ├── IntegrationTest.java │ ├── SystemTest.java │ └── UnitTest.java └── resources ├── application-test.yaml └── json ├── GeoLocationResponse_EMPTY.json ├── GeoLocationResponse_NOT_FOUND.json ├── GeoLocationResponse_OK.json ├── GeoLocationResponse_WRONG_STATUS.json ├── GeoTimesResponse_EMPTY.json ├── GeoTimesResponse_KO.json └── GeoTimesResponse_OK.json /.codebeatignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/.codebeatignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/application/ApplicationConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/application/ApplicationConfig.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplication.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/exceptions/GeoLocationNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/exceptions/GeoLocationNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/exceptions/GetGeoLocationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/exceptions/GetGeoLocationException.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/exceptions/GetSunriseSunsetException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/exceptions/GetSunriseSunsetException.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/exceptions/InvalidParametersException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/exceptions/InvalidParametersException.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/exceptions/PathNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/exceptions/PathNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/handlers/ApiHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/handlers/ApiHandler.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/handlers/ErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/handlers/ErrorHandler.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/handlers/ThrowableTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/handlers/ThrowableTranslator.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/ErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/ErrorResponse.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/GeoLocationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/GeoLocationResponse.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/GeoTimesResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/GeoTimesResponse.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/GeographicCoordinates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/GeographicCoordinates.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/LocationRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/LocationRequest.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/LocationResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/LocationResponse.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/model/SunriseSunset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/model/SunriseSunset.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/routers/ApiRouter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/routers/ApiRouter.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/routers/MainRouter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/routers/MainRouter.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/routers/StaticRouter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/routers/StaticRouter.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/services/GeoLocationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/services/GeoLocationService.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/services/GeoLocationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/services/GeoLocationServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetService.java -------------------------------------------------------------------------------- /src/main/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetServiceImpl.java -------------------------------------------------------------------------------- /src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/application.yaml -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/public/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/api.yaml -------------------------------------------------------------------------------- /src/main/resources/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/favicon-16x16.png -------------------------------------------------------------------------------- /src/main/resources/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/main/resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/index.html -------------------------------------------------------------------------------- /src/main/resources/public/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/oauth2-redirect.html -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui-bundle.js -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui.css -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui.css.map -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui.js -------------------------------------------------------------------------------- /src/main/resources/public/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/main/resources/public/swagger-ui.js.map -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplicationTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplicationUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/application/ReactiveMsApplicationUnitTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/handlers/ApiHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/handlers/ApiHandlerTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/handlers/ErrorHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/handlers/ErrorHandlerTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/handlers/ThrowableTranslatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/handlers/ThrowableTranslatorTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/model/WrongRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/model/WrongRequest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/routers/ApiRouterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/routers/ApiRouterTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/routers/MainRouterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/routers/MainRouterTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/routers/StaticRouterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/routers/StaticRouterTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/services/GeoLocationServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/services/GeoLocationServiceImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/services/SunriseSunsetServiceImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/BasicIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/BasicIntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/HandlersHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/HandlersHelper.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/RestServiceHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/RestServiceHelper.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/tags/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/tags/IntegrationTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/tags/SystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/tags/SystemTest.java -------------------------------------------------------------------------------- /src/test/java/org/learning/by/example/reactive/microservices/test/tags/UnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/java/org/learning/by/example/reactive/microservices/test/tags/UnitTest.java -------------------------------------------------------------------------------- /src/test/resources/application-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/resources/application-test.yaml -------------------------------------------------------------------------------- /src/test/resources/json/GeoLocationResponse_EMPTY.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/test/resources/json/GeoLocationResponse_NOT_FOUND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/resources/json/GeoLocationResponse_NOT_FOUND.json -------------------------------------------------------------------------------- /src/test/resources/json/GeoLocationResponse_OK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/resources/json/GeoLocationResponse_OK.json -------------------------------------------------------------------------------- /src/test/resources/json/GeoLocationResponse_WRONG_STATUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/resources/json/GeoLocationResponse_WRONG_STATUS.json -------------------------------------------------------------------------------- /src/test/resources/json/GeoTimesResponse_EMPTY.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/test/resources/json/GeoTimesResponse_KO.json: -------------------------------------------------------------------------------- 1 | { 2 | "status":"KO" 3 | } -------------------------------------------------------------------------------- /src/test/resources/json/GeoTimesResponse_OK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningByExample/reactive-ms-example/HEAD/src/test/resources/json/GeoTimesResponse_OK.json --------------------------------------------------------------------------------