Class BaseServiceDefinitionModel
- java.lang.Object
-
- com.flowable.serviceregistry.engine.impl.repository.BaseServiceDefinitionModel
-
- All Implemented Interfaces:
ServiceDefinitionModel
public class BaseServiceDefinitionModel extends Object implements ServiceDefinitionModel
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ColumnMapping>columnMappingsprotected Map<String,ColumnMapping>columnMappingsMapprotected com.fasterxml.jackson.databind.JsonNodeconfigprotected Stringdescriptionprotected Stringkeyprotected StringlookupIdprotected StringlookupIdPrefixprotected StringlookupTypeprotected Stringnameprotected List<ServiceOperation>operationsprotected List<ServiceOutputParameter>outputParametersprotected StringreferenceKeyprotected StringtableNameprotected Stringtype
-
Constructor Summary
Constructors Constructor Description BaseServiceDefinitionModel()
-
Method Summary
-
-
-
Field Detail
-
key
protected String key
-
name
protected String name
-
description
protected String description
-
type
protected String type
-
referenceKey
protected String referenceKey
-
lookupId
protected String lookupId
-
lookupType
protected String lookupType
-
lookupIdPrefix
protected String lookupIdPrefix
-
tableName
protected String tableName
-
config
protected com.fasterxml.jackson.databind.JsonNode config
-
columnMappings
protected List<ColumnMapping> columnMappings
-
columnMappingsMap
protected Map<String,ColumnMapping> columnMappingsMap
-
operations
protected List<ServiceOperation> operations
-
outputParameters
protected List<ServiceOutputParameter> outputParameters
-
-
Method Detail
-
getKey
public String getKey()
- Specified by:
getKeyin interfaceServiceDefinitionModel
-
setKey
public void setKey(String key)
-
getName
public String getName()
- Specified by:
getNamein interfaceServiceDefinitionModel
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceServiceDefinitionModel
-
setDescription
public void setDescription(String description)
-
getType
public String getType()
- Specified by:
getTypein interfaceServiceDefinitionModel
-
setType
public void setType(String type)
-
getReferenceKey
public String getReferenceKey()
- Specified by:
getReferenceKeyin interfaceServiceDefinitionModel
-
setReferenceKey
public void setReferenceKey(String referenceKey)
-
getLookupId
public String getLookupId()
- Specified by:
getLookupIdin interfaceServiceDefinitionModel
-
setLookupId
public void setLookupId(String lookupId)
-
getLookupType
public String getLookupType()
- Specified by:
getLookupTypein interfaceServiceDefinitionModel
-
setLookupType
public void setLookupType(String lookupType)
-
getLookupIdPrefix
public String getLookupIdPrefix()
- Specified by:
getLookupIdPrefixin interfaceServiceDefinitionModel
-
setLookupIdPrefix
public void setLookupIdPrefix(String lookupIdPrefix)
-
getTableName
public String getTableName()
- Specified by:
getTableNamein interfaceServiceDefinitionModel
-
setTableName
public void setTableName(String tableName)
-
getConfig
public com.fasterxml.jackson.databind.JsonNode getConfig()
- Specified by:
getConfigin interfaceServiceDefinitionModel
-
setConfig
public void setConfig(com.fasterxml.jackson.databind.JsonNode config)
-
getColumnMappings
public List<ColumnMapping> getColumnMappings()
- Specified by:
getColumnMappingsin interfaceServiceDefinitionModel
-
setColumnMappings
public void setColumnMappings(List<ColumnMapping> columnMappings)
-
getColumnMapping
public ColumnMapping getColumnMapping(String name)
- Specified by:
getColumnMappingin interfaceServiceDefinitionModel
-
getOperations
public List<ServiceOperation> getOperations()
- Specified by:
getOperationsin interfaceServiceDefinitionModel
-
setOperations
public void setOperations(List<ServiceOperation> operations)
-
getOutputParameters
public List<ServiceOutputParameter> getOutputParameters()
- Specified by:
getOutputParametersin interfaceServiceDefinitionModel
-
setOutputParameters
public void setOutputParameters(List<ServiceOutputParameter> outputParameters)
-
-