Class BaseServiceRegistryFieldMapping
- java.lang.Object
-
- com.flowable.dataobject.engine.impl.repository.serviceregistry.BaseServiceRegistryFieldMapping
-
- All Implemented Interfaces:
ServiceRegistryFieldMapping
public class BaseServiceRegistryFieldMapping extends Object implements ServiceRegistryFieldMapping
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdataObjectModelKeyprotected StringdataObjectModelRelationshipTypeprotected ObjectdefaultValueprotected Stringdescriptionprotected Stringlabelprotected booleanlookupIdprotected Stringnameprotected Stringtype
-
Constructor Summary
Constructors Constructor Description BaseServiceRegistryFieldMapping()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDataObjectModelKey()StringgetDataObjectModelRelationshipType()ObjectgetDefaultValue()StringgetDescription()StringgetLabel()StringgetName()StringgetType()booleanisLookupId()voidsetDataObjectModelKey(String dataObjectModelKey)voidsetDataObjectModelRelationshipType(String dataObjectModelRelationshipType)voidsetDefaultValue(Object defaultValue)voidsetDescription(String description)voidsetLabel(String label)voidsetLookupId(boolean lookupId)voidsetName(String name)voidsetType(String type)
-
-
-
Field Detail
-
name
protected String name
-
label
protected String label
-
description
protected String description
-
type
protected String type
-
lookupId
protected boolean lookupId
-
defaultValue
protected Object defaultValue
-
dataObjectModelKey
protected String dataObjectModelKey
-
dataObjectModelRelationshipType
protected String dataObjectModelRelationshipType
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceServiceRegistryFieldMapping
-
setName
public void setName(String name)
-
getLabel
public String getLabel()
- Specified by:
getLabelin interfaceServiceRegistryFieldMapping
-
setLabel
public void setLabel(String label)
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceServiceRegistryFieldMapping
-
setDescription
public void setDescription(String description)
-
getType
public String getType()
- Specified by:
getTypein interfaceServiceRegistryFieldMapping- Returns:
- the field type
- See Also:
for the available types
-
setType
public void setType(String type)
-
isLookupId
public boolean isLookupId()
- Specified by:
isLookupIdin interfaceServiceRegistryFieldMapping
-
setLookupId
public void setLookupId(boolean lookupId)
-
getDefaultValue
public Object getDefaultValue()
- Specified by:
getDefaultValuein interfaceServiceRegistryFieldMapping
-
setDefaultValue
public void setDefaultValue(Object defaultValue)
-
getDataObjectModelKey
public String getDataObjectModelKey()
- Specified by:
getDataObjectModelKeyin interfaceServiceRegistryFieldMapping
-
setDataObjectModelKey
public void setDataObjectModelKey(String dataObjectModelKey)
-
getDataObjectModelRelationshipType
public String getDataObjectModelRelationshipType()
- Specified by:
getDataObjectModelRelationshipTypein interfaceServiceRegistryFieldMapping
-
setDataObjectModelRelationshipType
public void setDataObjectModelRelationshipType(String dataObjectModelRelationshipType)
-
-