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 String
dataObjectModelKey
protected String
dataObjectModelRelationshipType
protected Object
defaultValue
protected String
description
protected String
label
protected boolean
lookupId
protected String
name
protected String
type
-
Constructor Summary
Constructors Constructor Description BaseServiceRegistryFieldMapping()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDataObjectModelKey()
String
getDataObjectModelRelationshipType()
Object
getDefaultValue()
String
getDescription()
String
getLabel()
String
getName()
String
getType()
boolean
isLookupId()
void
setDataObjectModelKey(String dataObjectModelKey)
void
setDataObjectModelRelationshipType(String dataObjectModelRelationshipType)
void
setDefaultValue(Object defaultValue)
void
setDescription(String description)
void
setLabel(String label)
void
setLookupId(boolean lookupId)
void
setName(String name)
void
setType(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:
getName
in interfaceServiceRegistryFieldMapping
-
setName
public void setName(String name)
-
getLabel
public String getLabel()
- Specified by:
getLabel
in interfaceServiceRegistryFieldMapping
-
setLabel
public void setLabel(String label)
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceServiceRegistryFieldMapping
-
setDescription
public void setDescription(String description)
-
getType
public String getType()
- Specified by:
getType
in interfaceServiceRegistryFieldMapping
- Returns:
- the field type
- See Also:
for the available types
-
setType
public void setType(String type)
-
isLookupId
public boolean isLookupId()
- Specified by:
isLookupId
in interfaceServiceRegistryFieldMapping
-
setLookupId
public void setLookupId(boolean lookupId)
-
getDefaultValue
public Object getDefaultValue()
- Specified by:
getDefaultValue
in interfaceServiceRegistryFieldMapping
-
setDefaultValue
public void setDefaultValue(Object defaultValue)
-
getDataObjectModelKey
public String getDataObjectModelKey()
- Specified by:
getDataObjectModelKey
in interfaceServiceRegistryFieldMapping
-
setDataObjectModelKey
public void setDataObjectModelKey(String dataObjectModelKey)
-
getDataObjectModelRelationshipType
public String getDataObjectModelRelationshipType()
- Specified by:
getDataObjectModelRelationshipType
in interfaceServiceRegistryFieldMapping
-
setDataObjectModelRelationshipType
public void setDataObjectModelRelationshipType(String dataObjectModelRelationshipType)
-
-