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 void
setBooleanValue(boolean booleanValue)
void
setDescription(String description)
default void
setIntValue(int intValue)
void
setLastUpdaterId(String lastUpdaterId)
void
setLastUpdateTime(Date lastUpdateTime)
default void
setLongValue(long longValue)
void
setName(String name)
void
setNamespace(String namespace)
void
setTenantId(String tenantId)
void
setTextValue(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)
-
-