aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-28 02:43:35 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-28 02:43:35 +0000
commita8137f82acab7c21fa71ae2ff8dc179f434ddc95 (patch)
tree339a898c88269d3c407401ab144ce88966684ca2
parent574f20ba0a2ec204fdabd7fe3725a8cb9025a8e2 (diff)
parent05b7bddc79ddaf128a5397bfb3582bbf7f4ae4f1 (diff)
Merge "Sonar fix: SdncGroupModel.java"
-rw-r--r--ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncGroupModel.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncGroupModel.java b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncGroupModel.java
index 95d1fcd2..ea62abe9 100644
--- a/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncGroupModel.java
+++ b/ueb-listener/src/main/java/org/onap/ccsdk/sli/northbound/uebclient/SdncGroupModel.java
@@ -4,6 +4,7 @@
* ================================================================================
* Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights
* reserved.
+ * Modifications Copyright © 2018 IBM.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,6 +36,8 @@ public class SdncGroupModel extends SdncBaseModel {
private static final Logger LOG = LoggerFactory
.getLogger(SdncVFModuleModel.class);
+
+ private static final String groupType = "group_type";
public SdncGroupModel(ISdcCsarHelper sdcCsarHelper, Group group, NodeTemplate nodeTemplate, SdncUebConfiguration config, DBResourceManager jdbcDataSource) throws IOException {
@@ -47,7 +50,7 @@ public class SdncGroupModel extends SdncBaseModel {
UUID = extractValue (metadata, "UUID");
addParameter("group_uuid", UUID);
addParameter("group_name", extractValue (metadata, "name"));
- addParameter("group_type", group.getType());
+ addParameter(groupType, group.getType());
addParameter("version", extractValue (metadata, "version"));
// extract properties
@@ -55,7 +58,7 @@ public class SdncGroupModel extends SdncBaseModel {
addParameter("subinterface_role", extractValue(group, "subinterface_role"), attributeValueParams);
// relevant complex group properties are extracted and inserted into ATTRIBUTE_VALUE_PAIR
- addParameter(extractGetInputName (group, "group_type"), extractGetInputValue(group, nodeTemplate, "group_type"), attributeValueParams);
+ addParameter(extractGetInputName (group, groupType), extractGetInputValue(group, nodeTemplate, groupType), attributeValueParams);
addParameter(extractGetInputName (group, "group_role"), extractGetInputValue(group, nodeTemplate, "group_role"), attributeValueParams);
addParameter(extractGetInputName (group, "group_function"), extractGetInputValue(group, nodeTemplate, "group_function"), attributeValueParams);
}