Interface ServiceDefinitionModel
-
- All Known Implementing Classes:
BaseServiceDefinitionModel
public interface ServiceDefinitionModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ColumnMapping>getColumnMappings()com.fasterxml.jackson.databind.JsonNodegetConfig()StringgetDescription()StringgetKey()StringgetLookupId()StringgetLookupIdPrefix()StringgetLookupType()StringgetName()List<ServiceOperation>getOperations()List<ServiceOutputParameter>getOutputParameters()StringgetReferenceKey()StringgetTableName()StringgetType()
-
-
-
Method Detail
-
getName
String getName()
-
getKey
String getKey()
-
getDescription
String getDescription()
-
getType
String getType()
-
getReferenceKey
String getReferenceKey()
-
getLookupId
String getLookupId()
-
getLookupType
String getLookupType()
-
getLookupIdPrefix
String getLookupIdPrefix()
-
getTableName
String getTableName()
-
getColumnMappings
List<ColumnMapping> getColumnMappings()
-
getOutputParameters
List<ServiceOutputParameter> getOutputParameters()
-
getOperations
List<ServiceOperation> getOperations()
-
getConfig
com.fasterxml.jackson.databind.JsonNode getConfig()
-
-