Interface ServiceOperation
-
- All Known Implementing Classes:
BaseServiceOperation
public interface ServiceOperation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNodegetConfig()java.lang.StringgetDescription()java.util.List<ServiceInputParameter>getInputParameters()java.lang.StringgetKey()java.lang.StringgetName()java.util.List<ServiceOutputParameter>getOutputParameters()java.lang.StringgetOutputType()
-
-
-
Method Detail
-
getKey
java.lang.String getKey()
-
getName
java.lang.String getName()
-
getDescription
java.lang.String getDescription()
-
getOutputType
java.lang.String getOutputType()
-
getConfig
com.fasterxml.jackson.databind.JsonNode getConfig()
-
getInputParameters
java.util.List<ServiceInputParameter> getInputParameters()
-
getOutputParameters
java.util.List<ServiceOutputParameter> getOutputParameters()
-
-