Interface MetadataInstanceEntity
-
- All Superinterfaces:
Entity
,HasRevision
,MetadataInstance
- All Known Implementing Classes:
MetadataInstanceEntityImpl
public interface MetadataInstanceEntity extends MetadataInstance, Entity, HasRevision
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
forceUpdate()
ByteArrayRef
getByteArrayRef()
Object
getCachedValue()
VariableType
getType()
void
setBytes(byte[] bytes)
void
setCachedValue(Object cachedValue)
void
setContentItemId(String contentItemId)
void
setDoubleValue(Double doubleValue)
void
setId(String id)
void
setLongValue(Long longValue)
void
setName(String name)
void
setTextValue(String textValue)
void
setTextValue2(String textValue2)
void
setType(VariableType type)
void
setTypeName(String typeName)
void
setValue(Object value)
-
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
-
Methods inherited from interface com.flowable.core.content.api.MetadataInstance
getBytes, getContentItemId, getDoubleValue, getId, getLongValue, getName, getTextValue, getTextValue2, getTypeName, getValue
-
-
-
-
Method Detail
-
setName
void setName(String name)
-
setContentItemId
void setContentItemId(String contentItemId)
-
setTextValue
void setTextValue(String textValue)
-
setTextValue2
void setTextValue2(String textValue2)
-
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)
-
getCachedValue
Object getCachedValue()
-
setCachedValue
void setCachedValue(Object cachedValue)
-
setTypeName
void setTypeName(String typeName)
-
-