Sonar:Major 37/30637/1
authorTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>
Wed, 7 Feb 2018 09:12:04 +0000 (14:42 +0530)
committerTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>
Wed, 7 Feb 2018 09:12:26 +0000 (14:42 +0530)
Add the @Override annotation above this method signature
DCAEServicesDAO.java:L45
Sonar link : https://sonar.onap.org/component_issues/index?id=org.onap.dcaegen2.platform%3Ainventory-api#resolved=false|severities=MAJOR|assignees=BharathS24
Location : src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java
Change-Id: I2c3edd6e49f20937691fe49986481a58b7a01d9c
Issue-ID: DCAEGEN2-317
Signed-off-by: TECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>
src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java

index c1ca46e..0595a9a 100644 (file)
@@ -42,7 +42,8 @@ public interface DCAEServicesDAO extends InventoryDAO {
 
     @SqlUpdate("create table dcae_services (service_id varchar not null primary key, type_id varchar not null, " +
             "vnf_id varchar not null, vnf_type varchar not null, vnf_location varchar not null, deployment_ref varchar, " +
-            "created timestamp not null, modified timestamp not null, status varchar not null)")
+               "created timestamp not null, modified timestamp not null, status varchar not null)")
+    @Override
     void createTable();
 
     @SqlUpdate("insert into dcae_services(service_id, type_id, vnf_id, vnf_type, vnf_location, deployment_ref, " +