Class MembershipEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.MembershipEntity
-
- All Implemented Interfaces:
java.io.Serializable
,DbEntity
public class MembershipEntity extends java.lang.Object implements java.io.Serializable, DbEntity
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected GroupEntity
group
protected java.lang.String
id
To handle a MemberhipEntity in the cache, an id is necessary.protected UserEntity
user
-
Constructor Summary
Constructors Constructor Description MembershipEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroupEntity
getGroup()
java.lang.String
getGroupId()
java.lang.String
getId()
java.lang.Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.UserEntity
getUser()
java.lang.String
getUserId()
void
setGroup(GroupEntity group)
void
setId(java.lang.String id)
void
setUser(UserEntity user)
java.lang.String
toString()
-
-
-
Field Detail
-
user
protected UserEntity user
-
group
protected GroupEntity group
-
id
protected java.lang.String id
To handle a MemberhipEntity in the cache, an id is necessary. Even though it is not going to be persisted in the database.
-
-
Method Detail
-
getPersistentState
public java.lang.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
-
getUser
public UserEntity getUser()
-
setUser
public void setUser(UserEntity user)
-
getGroup
public GroupEntity getGroup()
-
setGroup
public void setGroup(GroupEntity group)
-
getUserId
public java.lang.String getUserId()
-
getGroupId
public java.lang.String getGroupId()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-