Interface AppVariableEntity
-
- All Superinterfaces:
AppVariable
,Entity
,HasRevision
- All Known Implementing Classes:
AppVariableEntityImpl
public interface AppVariableEntity extends AppVariable, Entity, HasRevision
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
forceUpdate()
ByteArrayRef
getByteArrayRef()
Object
getCachedValue()
VariableType
getType()
void
setAppKey(String appKey)
void
setBytes(byte[] bytes)
void
setCachedValue(Object cachedValue)
void
setDoubleValue(Double doubleValue)
void
setId(String id)
void
setLongValue(Long longValue)
void
setName(String name)
void
setTenantId(String tenantId)
void
setTextValue(String textValue)
void
setType(VariableType type)
void
setTypeName(String typeName)
void
setValue(Object value)
-
Methods inherited from interface com.flowable.core.app.api.AppVariable
getAppKey, getId, getName, getTenantId, getTypeName, getValue
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Method Detail
-
setName
void setName(String name)
-
setAppKey
void setAppKey(String appKey)
-
setTenantId
void setTenantId(String tenantId)
-
setTextValue
void setTextValue(String textValue)
-
setLongValue
void setLongValue(Long longValue)
-
setDoubleValue
void setDoubleValue(Double doubleValue)
-
setBytes
void setBytes(byte[] bytes)
-
forceUpdate
void forceUpdate()
-
getByteArrayRef
ByteArrayRef getByteArrayRef()
-
getType
VariableType getType()
-
setType
void setType(VariableType type)
-
setValue
void setValue(Object value)
- Specified by:
setValue
in interfaceAppVariable
-
getCachedValue
Object getCachedValue()
-
setCachedValue
void setCachedValue(Object cachedValue)
-
setTypeName
void setTypeName(String typeName)
- Specified by:
setTypeName
in interfaceAppVariable
-
-