aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/tosca/converters/ToscaConverterUtils.java
blob: 4aadaa0910126d11ba7f9570956d1e3b69b17ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.be.model.tosca.converters;

import org.openecomp.sdc.be.model.tosca.ToscaFunctions;

import com.google.gson.JsonObject;

public class ToscaConverterUtils {

    public static boolean isGetInputValue(JsonObject value) {
        return value.get(ToscaFunctions.GET_INPUT.getFunctionName()) != null;
    }

}