Bug fix 59/23259/2
authorTal Gitelman <tg851x@intl.att.com>
Sun, 12 Nov 2017 16:55:07 +0000 (18:55 +0200)
committerTal Gitelman <tg851x@intl.att.com>
Sun, 12 Nov 2017 17:38:21 +0000 (19:38 +0200)
Change-Id: I9b928575c9f7bb77455177fa8f2eeed8d4f6de0d
Issue-ID: SDC-533
Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java

index b664efe..1ab7ffb 100644 (file)
@@ -3821,7 +3821,7 @@ public class ResourceBusinessLogic extends ComponentBusinessLogic {
                String value = null;
                List<GetInputValueDataDefinition> getInputs = null;
                boolean isValidate = true;
-               if (propertyInfo.getValue() != null) {
+               if (null != propertyInfo && null != propertyInfo.getValue()) {
                        getInputs = propertyInfo.getGet_input();
                        isValidate = getInputs == null || getInputs.isEmpty();
                        if (isValidate) {