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>
columnMappings
protected com.fasterxml.jackson.databind.JsonNode
config
protected String
description
protected String
key
protected String
lookupId
protected String
lookupIdPrefix
protected String
lookupType
protected String
name
protected List<ServiceOperation>
operations
protected List<ServiceOutputParameter>
outputParameters
protected String
referenceKey
protected String
tableName
protected String
type
-
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
-
operations
protected List<ServiceOperation> operations
-
outputParameters
protected List<ServiceOutputParameter> outputParameters
-
-
Method Detail
-
getKey
public String getKey()
- Specified by:
getKey
in interfaceServiceDefinitionModel
-
setKey
public void setKey(String key)
-
getName
public String getName()
- Specified by:
getName
in interfaceServiceDefinitionModel
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceServiceDefinitionModel
-
setDescription
public void setDescription(String description)
-
getType
public String getType()
- Specified by:
getType
in interfaceServiceDefinitionModel
-
setType
public void setType(String type)
-
getReferenceKey
public String getReferenceKey()
- Specified by:
getReferenceKey
in interfaceServiceDefinitionModel
-
setReferenceKey
public void setReferenceKey(String referenceKey)
-
getLookupId
public String getLookupId()
- Specified by:
getLookupId
in interfaceServiceDefinitionModel
-
setLookupId
public void setLookupId(String lookupId)
-
getLookupType
public String getLookupType()
- Specified by:
getLookupType
in interfaceServiceDefinitionModel
-
setLookupType
public void setLookupType(String lookupType)
-
getLookupIdPrefix
public String getLookupIdPrefix()
- Specified by:
getLookupIdPrefix
in interfaceServiceDefinitionModel
-
setLookupIdPrefix
public void setLookupIdPrefix(String lookupIdPrefix)
-
getTableName
public String getTableName()
- Specified by:
getTableName
in interfaceServiceDefinitionModel
-
setTableName
public void setTableName(String tableName)
-
getConfig
public com.fasterxml.jackson.databind.JsonNode getConfig()
- Specified by:
getConfig
in interfaceServiceDefinitionModel
-
setConfig
public void setConfig(com.fasterxml.jackson.databind.JsonNode config)
-
getColumnMappings
public List<ColumnMapping> getColumnMappings()
- Specified by:
getColumnMappings
in interfaceServiceDefinitionModel
-
setColumnMappings
public void setColumnMappings(List<ColumnMapping> columnMappings)
-
getOperations
public List<ServiceOperation> getOperations()
- Specified by:
getOperations
in interfaceServiceDefinitionModel
-
setOperations
public void setOperations(List<ServiceOperation> operations)
-
getOutputParameters
public List<ServiceOutputParameter> getOutputParameters()
- Specified by:
getOutputParameters
in interfaceServiceDefinitionModel
-
setOutputParameters
public void setOutputParameters(List<ServiceOutputParameter> outputParameters)
-
-