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.JsonNode
getConfig()
String
getDescription()
String
getKey()
String
getLookupId()
String
getLookupIdPrefix()
String
getLookupType()
String
getName()
List<ServiceOperation>
getOperations()
List<ServiceOutputParameter>
getOutputParameters()
String
getReferenceKey()
String
getTableName()
String
getType()
-
-
-
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()
-
-