Service Consumption BE
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / tosca / ToscaFunctions.java
1 package org.openecomp.sdc.be.model.tosca;
2
3 /**
4  * tosca functions supported by sdc
5  */
6 public enum ToscaFunctions {
7
8     GET_INPUT("get_input"),
9     GET_PROPERTY("get_property"),
10     GET_OPERATION_OUTPUT("get_operation_output");
11
12     private String functionName;
13
14     ToscaFunctions(String functionName) {
15         this.functionName = functionName;
16     }
17
18     public String getFunctionName() {
19         return functionName;
20     }
21 }