diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2020-12-16 13:08:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-16 13:08:19 +0000 |
commit | 966f3ab710bd1bebaa81e2394627df47a3f98909 (patch) | |
tree | eab6396b06c6d308581686953547c35d7be65d6c /cps-service/src/main/java/org/onap | |
parent | 0e9a8a51e51c7f3f90e4eae4b9907558b39818f8 (diff) | |
parent | 008c0adc3712ba0aee6410e8cd7efc61f4cbeeac (diff) |
Merge "Few Sonar Fixes Add spock-spring testing"
Diffstat (limited to 'cps-service/src/main/java/org/onap')
3 files changed, 4 insertions, 24 deletions
diff --git a/cps-service/src/main/java/org/onap/cps/spi/CpsModulePersistenceService.java b/cps-service/src/main/java/org/onap/cps/spi/CpsModulePersistenceService.java index 9749d8b2e3..7feae367e8 100644 --- a/cps-service/src/main/java/org/onap/cps/spi/CpsModulePersistenceService.java +++ b/cps-service/src/main/java/org/onap/cps/spi/CpsModulePersistenceService.java @@ -31,13 +31,14 @@ public interface CpsModulePersistenceService { * TODO * clean up method to conform with spi proposal - https://jira.onap.org/browse/CPS-103 * Store the module from a yang model in the database. + * @deprecated * * @param namespace module namespace * @param moduleContent module content * @param revision module revision * @param dataspaceName the name of the dataspace the module is associated with */ - @Deprecated + @Deprecated(forRemoval = true) void storeModule(final String namespace, final String moduleContent, final String revision, final String dataspaceName); diff --git a/cps-service/src/main/java/org/onap/cps/spi/exceptions/CpsException.java b/cps-service/src/main/java/org/onap/cps/spi/exceptions/CpsException.java index 406ade688b..96a0678062 100644 --- a/cps-service/src/main/java/org/onap/cps/spi/exceptions/CpsException.java +++ b/cps-service/src/main/java/org/onap/cps/spi/exceptions/CpsException.java @@ -28,26 +28,8 @@ public class CpsException extends RuntimeException { private static final long serialVersionUID = 1592619410918497467L; - @Getter String details; - - /** - * Constructor. - * - * @param cause the cause of the exception - */ - public CpsException(final Throwable cause) { - super(cause.getMessage(), cause); - } - - /** - * Constructor. - * - * @param message the error message - * @param cause the cause of the exception - */ - public CpsException(final String message, final Throwable cause) { - super(message, cause); - } + @Getter + final String details; /** * Constructor. diff --git a/cps-service/src/main/java/org/onap/cps/spi/model/DataNode.java b/cps-service/src/main/java/org/onap/cps/spi/model/DataNode.java index 5ed45ad6e1..8bd4047007 100644 --- a/cps-service/src/main/java/org/onap/cps/spi/model/DataNode.java +++ b/cps-service/src/main/java/org/onap/cps/spi/model/DataNode.java @@ -24,9 +24,6 @@ import java.util.Collection; import java.util.Map; import lombok.Builder; import lombok.Data; -import lombok.Getter; -import lombok.NoArgsConstructor; -import lombok.Setter; @Data @Builder |