Class ConfigurationPropertyEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- com.flowable.platform.engine.impl.persistence.entity.AbstractPlatformEngineEntity
-
- com.flowable.platform.engine.impl.persistence.entity.ConfigurationPropertyEntityImpl
-
- All Implemented Interfaces:
ConfigurationProperty
,ConfigurationPropertyEntity
,HasRevision
,Entity
public class ConfigurationPropertyEntityImpl extends AbstractPlatformEngineEntity implements ConfigurationPropertyEntity
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected String
description
protected String
lastUpdaterId
protected Date
lastUpdateTime
protected String
name
protected String
namespace
protected String
tenantId
protected String
textValue
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
-
Constructor Summary
Constructors Constructor Description ConfigurationPropertyEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The description for the propertyString
getLastUpdaterId()
Date
getLastUpdateTime()
String
getName()
The name of the propertyString
getNamespace()
The namespace of the property.Object
getPersistentState()
String
getTenantId()
The tenant for the property.String
getTextValue()
void
setDescription(String description)
void
setLastUpdaterId(String lastUpdaterId)
void
setLastUpdateTime(Date lastUpdateTime)
void
setName(String name)
void
setNamespace(String namespace)
void
setTenantId(String tenantId)
void
setTextValue(String textValue)
String
toString()
-
Methods inherited from class com.flowable.platform.engine.impl.persistence.entity.AbstractPlatformEngineEntity
getIdPrefix
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
getId, getOriginalPersistentState, getRevision, getRevisionNext, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setRevision, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.flowable.platform.api.configuration.ConfigurationProperty
getBooleanValue, getId, getIntValue, getLongValue, mapValue
-
Methods inherited from interface com.flowable.platform.engine.impl.persistence.entity.ConfigurationPropertyEntity
setBooleanValue, setIntValue, setLongValue
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
-
-
-
Method Detail
-
getNamespace
public String getNamespace()
Description copied from interface:ConfigurationProperty
The namespace of the property.- Specified by:
getNamespace
in interfaceConfigurationProperty
-
setNamespace
public void setNamespace(String namespace)
- Specified by:
setNamespace
in interfaceConfigurationPropertyEntity
-
getName
public String getName()
Description copied from interface:ConfigurationProperty
The name of the property- Specified by:
getName
in interfaceConfigurationProperty
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceConfigurationPropertyEntity
-
getDescription
public String getDescription()
Description copied from interface:ConfigurationProperty
The description for the property- Specified by:
getDescription
in interfaceConfigurationProperty
-
setDescription
public void setDescription(String description)
- Specified by:
setDescription
in interfaceConfigurationPropertyEntity
-
getTenantId
public String getTenantId()
Description copied from interface:ConfigurationProperty
The tenant for the property.- Specified by:
getTenantId
in interfaceConfigurationProperty
-
setTenantId
public void setTenantId(String tenantId)
- Specified by:
setTenantId
in interfaceConfigurationPropertyEntity
-
getLastUpdaterId
public String getLastUpdaterId()
- Specified by:
getLastUpdaterId
in interfaceConfigurationProperty
-
setLastUpdaterId
public void setLastUpdaterId(String lastUpdaterId)
- Specified by:
setLastUpdaterId
in interfaceConfigurationPropertyEntity
-
getLastUpdateTime
public Date getLastUpdateTime()
- Specified by:
getLastUpdateTime
in interfaceConfigurationProperty
-
setLastUpdateTime
public void setLastUpdateTime(Date lastUpdateTime)
- Specified by:
setLastUpdateTime
in interfaceConfigurationPropertyEntity
-
getTextValue
public String getTextValue()
- Specified by:
getTextValue
in interfaceConfigurationProperty
-
setTextValue
public void setTextValue(String textValue)
- Specified by:
setTextValue
in interfaceConfigurationPropertyEntity
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
-