Interface ConfigurationPropertyEntity
-
- All Superinterfaces:
ConfigurationProperty,Entity
- All Known Implementing Classes:
ConfigurationPropertyEntityImpl
public interface ConfigurationPropertyEntity extends ConfigurationProperty, Entity
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidsetBooleanValue(boolean booleanValue)voidsetDescription(String description)default voidsetIntValue(int intValue)voidsetLastUpdaterId(String lastUpdaterId)voidsetLastUpdateTime(Date lastUpdateTime)default voidsetLongValue(long longValue)voidsetName(String name)voidsetNamespace(String namespace)voidsetTenantId(String tenantId)voidsetTextValue(String textValue)-
Methods inherited from interface com.flowable.platform.api.configuration.ConfigurationProperty
getBooleanValue, getDescription, getId, getIntValue, getLastUpdaterId, getLastUpdateTime, getLongValue, getName, getNamespace, getTenantId, getTextValue, mapValue
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
-
-
-
Method Detail
-
setNamespace
void setNamespace(String namespace)
-
setName
void setName(String name)
-
setDescription
void setDescription(String description)
-
setTenantId
void setTenantId(String tenantId)
-
setTextValue
void setTextValue(String textValue)
-
setLastUpdaterId
void setLastUpdaterId(String lastUpdaterId)
-
setLastUpdateTime
void setLastUpdateTime(Date lastUpdateTime)
-
setIntValue
default void setIntValue(int intValue)
-
setLongValue
default void setLongValue(long longValue)
-
setBooleanValue
default void setBooleanValue(boolean booleanValue)
-
-