From: TECHMAHINDRA\BS00493532 Date: Wed, 7 Feb 2018 09:12:04 +0000 (+0530) Subject: Sonar:Major X-Git-Tag: 2.0.0-ONAP~23^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F37%2F30637%2F1;p=dcaegen2%2Fplatform%2Finventory-api.git Sonar:Major 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 --- diff --git a/src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java b/src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java index c1ca46e..0595a9a 100644 --- a/src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java +++ b/src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java @@ -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, " +