Class IdentityInfoEntityImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntity
-
- com.flowable.idm.engine.impl.persistence.entity.AbstractIdmEngineEntity
-
- com.flowable.idm.engine.impl.persistence.entity.IdentityInfoEntityImpl
-
- All Implemented Interfaces:
IdentityInfoEntity
,Serializable
,HasRevision
,Entity
public class IdentityInfoEntityImpl extends AbstractIdmEngineEntity implements IdentityInfoEntity, Serializable
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>
details
protected String
key
protected String
parentId
protected String
password
protected byte[]
passwordBytes
protected String
type
protected String
userId
protected String
value
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
id, isDeleted, isInserted, isUpdated, originalPersistentState, revision
-
Fields inherited from interface com.flowable.idm.engine.impl.persistence.entity.IdentityInfoEntity
TYPE_USERINFO
-
-
Constructor Summary
Constructors Constructor Description IdentityInfoEntityImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getDetails()
String
getKey()
String
getName()
String
getParentId()
String
getPassword()
byte[]
getPasswordBytes()
Object
getPersistentState()
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 class com.flowable.idm.engine.impl.persistence.entity.AbstractIdmEngineEntity
getIdPrefix
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntity
getId, getOriginalPersistentState, getRevision, getRevisionNext, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setRevision, setUpdated
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.Entity
getId, getIdPrefix, getOriginalPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setOriginalPersistentState, setUpdated
-
Methods inherited from interface org.flowable.common.engine.impl.db.HasRevision
getRevision, getRevisionNext, setRevision
-
-
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
- Specified by:
getPersistentState
in interfaceEntity
-
getType
public String getType()
- Specified by:
getType
in interfaceIdentityInfoEntity
-
setType
public void setType(String type)
- Specified by:
setType
in interfaceIdentityInfoEntity
-
getUserId
public String getUserId()
- Specified by:
getUserId
in interfaceIdentityInfoEntity
-
setUserId
public void setUserId(String userId)
- Specified by:
setUserId
in interfaceIdentityInfoEntity
-
getKey
public String getKey()
- Specified by:
getKey
in interfaceIdentityInfoEntity
-
setKey
public void setKey(String key)
- Specified by:
setKey
in interfaceIdentityInfoEntity
-
getValue
public String getValue()
- Specified by:
getValue
in interfaceIdentityInfoEntity
-
setValue
public void setValue(String value)
- Specified by:
setValue
in interfaceIdentityInfoEntity
-
getPasswordBytes
public byte[] getPasswordBytes()
- Specified by:
getPasswordBytes
in interfaceIdentityInfoEntity
-
setPasswordBytes
public void setPasswordBytes(byte[] passwordBytes)
- Specified by:
setPasswordBytes
in interfaceIdentityInfoEntity
-
getPassword
public String getPassword()
- Specified by:
getPassword
in interfaceIdentityInfoEntity
-
setPassword
public void setPassword(String password)
- Specified by:
setPassword
in interfaceIdentityInfoEntity
-
getName
public String getName()
- Specified by:
getName
in interfaceIdentityInfoEntity
-
getUsername
public String getUsername()
- Specified by:
getUsername
in interfaceIdentityInfoEntity
-
getParentId
public String getParentId()
- Specified by:
getParentId
in interfaceIdentityInfoEntity
-
setParentId
public void setParentId(String parentId)
- Specified by:
setParentId
in interfaceIdentityInfoEntity
-
getDetails
public Map<String,String> getDetails()
- Specified by:
getDetails
in interfaceIdentityInfoEntity
-
setDetails
public void setDetails(Map<String,String> details)
- Specified by:
setDetails
in interfaceIdentityInfoEntity
-
-