Add controller which create error reports 03/90503/15
authormichal.banka <michal.banka@nokia.com>
Wed, 26 Jun 2019 09:05:13 +0000 (11:05 +0200)
committermichal.banka <michal.banka@nokia.com>
Thu, 4 Jul 2019 11:37:28 +0000 (13:37 +0200)
commitb5bfe9c92e75f80fcad25ea0ce65ef9e45d13a8c
tree6913d03a472ed1a5b0c7cfd517fd9eb59d85cd29
parentb460da47f0aebe67bed1234711b8bbf4889d1354
Add controller which create error reports

Change-Id: Icfba59e90420c0d849c9ba5fae3d0cb1b40ed265
Issue-ID: VID-488
Signed-off-by: michal.banka <michal.banka@nokia.com>
19 files changed:
vid-app-common/src/main/java/org/onap/vid/aai/AaiClientInterface.java
vid-app-common/src/main/java/org/onap/vid/aai/AaiOverTLSClientInterface.java
vid-app-common/src/main/java/org/onap/vid/controller/ErrorReportController.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/controller/ProbeController.java
vid-app-common/src/main/java/org/onap/vid/model/GitRepositoryState.java
vid-app-common/src/main/java/org/onap/vid/model/Service.java
vid-app-common/src/main/java/org/onap/vid/model/errorReport/ReportCreationParameters.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/mso/MsoBusinessLogic.java
vid-app-common/src/main/java/org/onap/vid/reports/BasicReportGenerator.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/reports/DeploymentReportGenerator.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/reports/ReportGenerator.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/scheduler/SchedulerService.java
vid-app-common/src/main/java/org/onap/vid/services/ProbeInterface.java [moved from vid-app-common/src/main/java/org/onap/vid/controller/ProbeInterface.java with 97% similarity]
vid-app-common/src/main/java/org/onap/vid/services/ProbeService.java [new file with mode: 0644]
vid-app-common/src/main/java/org/onap/vid/services/VidService.java
vid-app-common/src/test/java/org/onap/vid/controller/ErrorReportControllerTest.java [new file with mode: 0644]
vid-app-common/src/test/java/org/onap/vid/reports/BasicReportGeneratorTest.java [new file with mode: 0644]
vid-app-common/src/test/java/org/onap/vid/reports/DeploymentReportGeneratorTest.java [new file with mode: 0644]
vid-app-common/src/test/java/org/onap/vid/services/ProbeServiceTest.java [new file with mode: 0644]