Package com.flowable.core.app.api
Interface AppVariable
-
- All Known Subinterfaces:
AppVariableEntity
- All Known Implementing Classes:
AppVariableEntityImpl
public interface AppVariable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAppKey()
reference to the app definition keyString
getId()
unique identifierString
getName()
variable nameString
getTenantId()
the tenant identifier of this app variableString
getTypeName()
Object
getValue()
void
setTypeName(String typeName)
void
setValue(Object value)
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getAppKey
String getAppKey()
reference to the app definition key
-
getName
String getName()
variable name
-
getTenantId
String getTenantId()
the tenant identifier of this app variable
-
getValue
Object getValue()
-
setValue
void setValue(Object value)
-
getTypeName
String getTypeName()
-
setTypeName
void setTypeName(String typeName)
-
-