Enrichment Coordination Service 07/4707/3
authorPatrikBuhr <patrik.buhr@est.tech>
Fri, 11 Sep 2020 14:50:37 +0000 (16:50 +0200)
committerPatrikBuhr <patrik.buhr@est.tech>
Thu, 17 Sep 2020 09:31:24 +0000 (11:31 +0200)
commitd1d085456c485599f6b8aba87b6d761b29c2ecd4
tree3c04d9e61d2bce3c19e25a3389ce4c86a2cce16f
parent575869c5ed7533f22b0c7db05fdbbbb8e00e09fc
Enrichment Coordination Service

First part. Consumer API defined.

Change-Id: I0841cba636c2e79ed0e54978641434e83aff77e5
Issue-ID: NONRTRIC-173
Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
25 files changed:
enrichment-coordinator-service/config/README [new file with mode: 0644]
enrichment-coordinator-service/config/application.yaml [new file with mode: 0644]
enrichment-coordinator-service/config/keystore.jks [new file with mode: 0644]
enrichment-coordinator-service/config/truststore.jks [new file with mode: 0644]
enrichment-coordinator-service/docs/api.yaml [new file with mode: 0644]
enrichment-coordinator-service/eclipse-formatter.xml [new file with mode: 0644]
enrichment-coordinator-service/pom.xml [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/Application.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/BeanFactory.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/SwaggerConfig.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/clients/AsyncRestClient.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/configuration/ApplicationConfig.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/configuration/WebClientConfig.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/ErrorResponse.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerConsts.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerController.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobInfo.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobStatus.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiTypeInfo.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/exceptions/ServiceException.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiJob.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiJobs.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiType.java [new file with mode: 0644]
enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiTypes.java [new file with mode: 0644]
enrichment-coordinator-service/src/test/java/org/oransc/enrichment/ApplicationTest.java [new file with mode: 0644]