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,org.flowable.common.engine.impl.db.HasRevision,org.flowable.common.engine.impl.persistence.entity.Entity
public class ConfigurationPropertyEntityImpl extends AbstractPlatformEngineEntity implements ConfigurationPropertyEntity
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.lang.StringlastUpdaterIdprotected java.util.DatelastUpdateTimeprotected java.lang.Stringnameprotected java.lang.Stringnamespaceprotected java.lang.StringtenantIdprotected java.lang.StringtextValue
-
Constructor Summary
Constructors Constructor Description ConfigurationPropertyEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()The description for the propertyjava.lang.StringgetLastUpdaterId()java.util.DategetLastUpdateTime()java.lang.StringgetName()The name of the propertyjava.lang.StringgetNamespace()The namespace of the property.java.lang.ObjectgetPersistentState()java.lang.StringgetTenantId()The tenant for the property.java.lang.StringgetTextValue()voidsetDescription(java.lang.String description)voidsetLastUpdaterId(java.lang.String lastUpdaterId)voidsetLastUpdateTime(java.util.Date lastUpdateTime)voidsetName(java.lang.String name)voidsetNamespace(java.lang.String namespace)voidsetTenantId(java.lang.String tenantId)voidsetTextValue(java.lang.String textValue)java.lang.StringtoString()-
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
-
-
-
-
Field Detail
-
lastUpdaterId
protected java.lang.String lastUpdaterId
-
lastUpdateTime
protected java.util.Date lastUpdateTime
-
namespace
protected java.lang.String namespace
-
name
protected java.lang.String name
-
description
protected java.lang.String description
-
tenantId
protected java.lang.String tenantId
-
textValue
protected java.lang.String textValue
-
-
Method Detail
-
getNamespace
public java.lang.String getNamespace()
Description copied from interface:ConfigurationPropertyThe namespace of the property.- Specified by:
getNamespacein interfaceConfigurationProperty
-
setNamespace
public void setNamespace(java.lang.String namespace)
- Specified by:
setNamespacein interfaceConfigurationPropertyEntity
-
getName
public java.lang.String getName()
Description copied from interface:ConfigurationPropertyThe name of the property- Specified by:
getNamein interfaceConfigurationProperty
-
setName
public void setName(java.lang.String name)
- Specified by:
setNamein interfaceConfigurationPropertyEntity
-
getDescription
public java.lang.String getDescription()
Description copied from interface:ConfigurationPropertyThe description for the property- Specified by:
getDescriptionin interfaceConfigurationProperty
-
setDescription
public void setDescription(java.lang.String description)
- Specified by:
setDescriptionin interfaceConfigurationPropertyEntity
-
getTenantId
public java.lang.String getTenantId()
Description copied from interface:ConfigurationPropertyThe tenant for the property.- Specified by:
getTenantIdin interfaceConfigurationProperty
-
setTenantId
public void setTenantId(java.lang.String tenantId)
- Specified by:
setTenantIdin interfaceConfigurationPropertyEntity
-
getLastUpdaterId
public java.lang.String getLastUpdaterId()
- Specified by:
getLastUpdaterIdin interfaceConfigurationProperty
-
setLastUpdaterId
public void setLastUpdaterId(java.lang.String lastUpdaterId)
- Specified by:
setLastUpdaterIdin interfaceConfigurationPropertyEntity
-
getLastUpdateTime
public java.util.Date getLastUpdateTime()
- Specified by:
getLastUpdateTimein interfaceConfigurationProperty
-
setLastUpdateTime
public void setLastUpdateTime(java.util.Date lastUpdateTime)
- Specified by:
setLastUpdateTimein interfaceConfigurationPropertyEntity
-
getTextValue
public java.lang.String getTextValue()
- Specified by:
getTextValuein interfaceConfigurationProperty
-
setTextValue
public void setTextValue(java.lang.String textValue)
- Specified by:
setTextValuein interfaceConfigurationPropertyEntity
-
getPersistentState
public java.lang.Object getPersistentState()
- Specified by:
getPersistentStatein interfaceorg.flowable.common.engine.impl.persistence.entity.Entity
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-