Interface IdentityInfoEntity
-
- All Superinterfaces:
Entity
,HasRevision
- All Known Implementing Classes:
IdentityInfoEntityImpl
public interface IdentityInfoEntity extends Entity, HasRevision
- Author:
- Tom Baeyens
-
-
Field Summary
Fields Modifier and Type Field Description static String
TYPE_USERINFO
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>
getDetails()
String
getKey()
String
getName()
String
getParentId()
String
getPassword()
byte[]
getPasswordBytes()
String
getType()
String
getUserId()
String
getUsername()
String
getValue()
void
setDetails(Map<String,String> details)
void
setKey(String key)
void
setParentId(String parentId)
void
setPassword(String password)
void
setPasswordBytes(byte[] passwordBytes)
void
setType(String type)
void
setUserId(String userId)
void
setValue(String value)
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Field Detail
-
TYPE_USERINFO
static final String TYPE_USERINFO
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
String getType()
-
setType
void setType(String type)
-
getUserId
String getUserId()
-
setUserId
void setUserId(String userId)
-
getKey
String getKey()
-
setKey
void setKey(String key)
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getPasswordBytes
byte[] getPasswordBytes()
-
setPasswordBytes
void setPasswordBytes(byte[] passwordBytes)
-
getPassword
String getPassword()
-
setPassword
void setPassword(String password)
-
getName
String getName()
-
getUsername
String getUsername()
-
getParentId
String getParentId()
-
setParentId
void setParentId(String parentId)
-
-