Fix logout and auth specific param customization
[cli.git] / framework / src / main / java / org / onap / cli / fw / output / OnapCommandResultAttribute.java
index c00c88b..d54fbff 100644 (file)
@@ -58,7 +58,7 @@ public class OnapCommandResultAttribute {
     private boolean isSecured = false;
 
     public void setValues(List<String> values) {
-        this.values = values;
+        this.values = (values == null) ? new ArrayList<>() : values;
     }
 
     public String getName() {