1710 Rebase - Second Attempt
[so.git] / adapters / mso-adapter-utils / src / main / java / org / openecomp / mso / cloud / CloudIdentity.java
index db6ccde..0f15dea 100644 (file)
@@ -270,9 +270,9 @@ public class CloudIdentity {
                      .append (", tenantMetadata=")
                      .append (tenantMetadata)
                      .append (", identityServerType=")
-                     .append (identityServerType.toString())
+                     .append (identityServerType == null ? "null" : identityServerType.toString())
                      .append (", identityAuthenticationType=")
-                     .append (identityAuthenticationType.toString());
+                     .append (identityAuthenticationType == null ? "null" : identityAuthenticationType.toString());
         
         return stringBuilder.toString ();
     }