aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>2018-02-07 14:42:04 +0530
committerTECHMAHINDRA\BS00493532 <BS00493532@techmahindra.com>2018-02-07 14:42:26 +0530
commitb29a4ab449ecc0693526d0efd66f477c0cd44030 (patch)
treee28e838039be64756af052bf1028ee20e8f0c6b8
parent06ec2b0458b49a33beb44c27a35394abdd4ff9ed (diff)
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 <BS00493532@techmahindra.com>
-rw-r--r--src/main/java/org/onap/dcae/inventory/daos/DCAEServicesDAO.java3
1 files changed, 2 insertions, 1 deletions
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, " +