Fix Blocker/Critical sonar issues 55/14555/1
authorshashikanth <shashikanth.vh@huawei.com>
Fri, 22 Sep 2017 09:54:41 +0000 (15:24 +0530)
committershashikanth <shashikanth.vh@huawei.com>
Fri, 22 Sep 2017 09:54:41 +0000 (15:24 +0530)
Fix Blocker/Critical sonar issues in so module
https://sonar.onap.org/component_issues?id=org.openecomp.so%3Aso#resolved=false|severities=CRITICAL

Fixed issue Remove this call to "equals"; comparisons between unrelated types always return false.

Issue-Id:SO-118
Change-Id: I8e3594958a84efc933206655b7ff96a7d08c24e0
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
adapters/mso-adapter-utils/src/main/java/org/openecomp/mso/openstack/utils/MsoTenantUtilsFactory.java

index 219dac6..bceb749 100644 (file)
 
 package org.openecomp.mso.openstack.utils;
 
-import java.lang.reflect.InvocationTargetException;
 import org.openecomp.mso.cloud.CloudConfig;
 import org.openecomp.mso.cloud.CloudConfigFactory;
 import org.openecomp.mso.cloud.CloudIdentity;
 import org.openecomp.mso.cloud.CloudSite;
 import org.openecomp.mso.logger.MsoLogger;
 import org.openecomp.mso.properties.MsoJavaProperties;
-import org.openecomp.mso.openstack.utils.MsoKeystoneUtils;
+
+import java.lang.reflect.InvocationTargetException;
 
 
 public class MsoTenantUtilsFactory {
@@ -55,7 +55,7 @@ public class MsoTenantUtilsFactory {
        public MsoTenantUtils getTenantUtilsByServerType(String serverType) {
 
                MsoTenantUtils tenantU = null;
-               if (CloudIdentity.IdentityServerType.KEYSTONE.equals(serverType)) {
+               if (CloudIdentity.IdentityServerType.KEYSTONE.toString().equals(serverType)) {
                        tenantU = new MsoKeystoneUtils (msoPropID);
                } else {
                        try {