summaryrefslogtreecommitdiffstats
path: root/openecomp-be/api
diff options
context:
space:
mode:
authorRodrigo Lima <rodrigo.lima@yoppworks.com>2020-05-03 20:24:35 -0400
committerRodrigo Lima <rodrigo.lima@yoppworks.com>2020-05-03 20:24:35 -0400
commit5dbe45d88a8372343ed77504220b50b815b1b7f9 (patch)
treef6ff15db52872a13dbfd4a8a5236db78ef4b77d9 /openecomp-be/api
parent43a1a1714aa08bf632faffd72f1791d59f02e59c (diff)
Add Autowired annotation to the constructor instead of param in ExternalTestingImpl
Issue-ID: SDC-3003 Signed-off-by: Rodrigo Lima <rodrigo.lima@yoppworks.com> Change-Id: I720c6cf271a1444a584f42cdca2a7e4f2c59a85d
Diffstat (limited to 'openecomp-be/api')
-rw-r--r--openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java b/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java
index 851dec2f71..1aae929b17 100644
--- a/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java
+++ b/openecomp-be/api/openecomp-sdc-rest-webapp/externaltesting-rest/externaltesting-rest-services/src/main/java/org/openecomp/sdcrests/externaltesting/rest/services/ExternalTestingImpl.java
@@ -62,7 +62,8 @@ public class ExternalTestingImpl implements ExternalTesting {
private static final Logger logger = LoggerFactory.getLogger(ExternalTestingImpl.class);
- public ExternalTestingImpl(@Autowired ExternalTestingManager testingManager) {
+ @Autowired
+ public ExternalTestingImpl(ExternalTestingManager testingManager) {
this.testingManager = testingManager;
this.vendorSoftwareProductManager = VspManagerFactory.getInstance().createInterface();
}