Class FunctionRef
- java.lang.Object
-
- io.serverlessworkflow.api.functions.FunctionRef
-
- All Implemented Interfaces:
Serializable
public class FunctionRef extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FunctionRef()
No args constructor for use in serializationFunctionRef(String refName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getParameters()
Function parametersString
getRefName()
Name of the referenced function (Required)void
setParameters(Map<String,String> parameters)
Function parametersvoid
setRefName(String refName)
Name of the referenced function (Required)FunctionRef
withParameters(Map<String,String> parameters)
FunctionRef
withRefName(String refName)
-
-
-
Constructor Detail
-
FunctionRef
public FunctionRef()
No args constructor for use in serialization
-
FunctionRef
public FunctionRef(String refName)
- Parameters:
refName
-
-
-
Method Detail
-
getRefName
public String getRefName()
Name of the referenced function (Required)
-
setRefName
public void setRefName(String refName)
Name of the referenced function (Required)
-
withRefName
public FunctionRef withRefName(String refName)
-
withParameters
public FunctionRef withParameters(Map<String,String> parameters)
-
-