Class IdentityInfoEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.IdentityInfoEntity
-
- All Implemented Interfaces:
Serializable
,DbEntity
,HasDbRevision
,Account
public class IdentityInfoEntity extends Object implements DbEntity, HasDbRevision, Account, Serializable
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>
details
protected String
id
protected String
key
protected String
parentId
protected String
password
protected byte[]
passwordBytes
protected int
revision
protected String
type
static String
TYPE_USERACCOUNT
static String
TYPE_USERINFO
protected String
userId
protected String
value
-
Fields inherited from interface org.camunda.bpm.engine.impl.identity.Account
NAME_ALFRESCO, NAME_GOOGLE, NAME_MAIL, NAME_SKYPE
-
-
Constructor Summary
Constructors Constructor Description IdentityInfoEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getDetails()
String
getId()
String
getKey()
String
getName()
String
getParentId()
String
getPassword()
byte[]
getPasswordBytes()
Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.int
getRevision()
int
getRevisionNext()
String
getType()
String
getUserId()
String
getUsername()
String
getValue()
void
setDetails(Map<String,String> details)
void
setId(String id)
void
setKey(String key)
void
setParentId(String parentId)
void
setPassword(String password)
void
setPasswordBytes(byte[] passwordBytes)
void
setRevision(int revision)
void
setType(String type)
void
setUserId(String userId)
void
setValue(String value)
String
toString()
-
-
-
Field Detail
-
TYPE_USERACCOUNT
public static final String TYPE_USERACCOUNT
- See Also:
- Constant Field Values
-
TYPE_USERINFO
public static final String TYPE_USERINFO
- See Also:
- Constant Field Values
-
id
protected String id
-
revision
protected int revision
-
type
protected String type
-
userId
protected String userId
-
key
protected String key
-
value
protected String value
-
password
protected String password
-
passwordBytes
protected byte[] passwordBytes
-
parentId
protected String parentId
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
Description copied from interface:DbEntity
Returns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.- Specified by:
getPersistentState
in interfaceDbEntity
-
getRevisionNext
public int getRevisionNext()
- Specified by:
getRevisionNext
in interfaceHasDbRevision
-
getRevision
public int getRevision()
- Specified by:
getRevision
in interfaceHasDbRevision
-
setRevision
public void setRevision(int revision)
- Specified by:
setRevision
in interfaceHasDbRevision
-
getType
public String getType()
-
setType
public void setType(String type)
-
getUserId
public String getUserId()
-
setUserId
public void setUserId(String userId)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getPasswordBytes
public byte[] getPasswordBytes()
-
setPasswordBytes
public void setPasswordBytes(byte[] passwordBytes)
-
getPassword
public String getPassword()
- Specified by:
getPassword
in interfaceAccount
-
setPassword
public void setPassword(String password)
-
getUsername
public String getUsername()
- Specified by:
getUsername
in interfaceAccount
-
getParentId
public String getParentId()
-
setParentId
public void setParentId(String parentId)
-
getDetails
public Map<String,String> getDetails()
- Specified by:
getDetails
in interfaceAccount
-
-