From 4118d94f71a4e5f5a4aef038f51c66fd2c1b8b60 Mon Sep 17 00:00:00 2001 From: ToineSiebelink Date: Fri, 15 Jan 2021 09:30:40 +0000 Subject: SonarQube fixes - Ignore missed SonarQube violations on SchemaSetAlreadyDefinedException - Added coverage fro CpsConfig as it will not be covered by MVC tests Issue-ID: CPS-89 Signed-off-by: ToineSiebelink Change-Id: I52911419dd9556cf078f2a05eab2c7783cbf304f --- .../org/onap/cps/spi/exceptions/SchemaSetAlreadyDefinedException.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cps-service/src/main') diff --git a/cps-service/src/main/java/org/onap/cps/spi/exceptions/SchemaSetAlreadyDefinedException.java b/cps-service/src/main/java/org/onap/cps/spi/exceptions/SchemaSetAlreadyDefinedException.java index 9376d6893..1e0b8dbb6 100644 --- a/cps-service/src/main/java/org/onap/cps/spi/exceptions/SchemaSetAlreadyDefinedException.java +++ b/cps-service/src/main/java/org/onap/cps/spi/exceptions/SchemaSetAlreadyDefinedException.java @@ -22,6 +22,8 @@ package org.onap.cps.spi.exceptions; /** * Schema set already defined exception. Indicates the a schema set with same name already exists in the same dataspace */ + +@SuppressWarnings("squid:S110") // Team agreed to accept 6 levels of inheritance for CPS Exceptions public class SchemaSetAlreadyDefinedException extends CpsAdminException { private static final long serialVersionUID = 501929839139881112L; -- cgit 1.2.3-korg