Package org.openapitools.client.model
Class IdentityLinkDto
- java.lang.Object
-
- org.openapitools.client.model.IdentityLinkDto
-
public class IdentityLinkDto extends Object
IdentityLinkDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_GROUP_IDstatic StringSERIALIZED_NAME_TYPEstatic StringSERIALIZED_NAME_USER_ID
-
Constructor Summary
Constructors Constructor Description IdentityLinkDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetGroupId()The id of the group participating in this link.StringgetType()The type of the identity link.StringgetUserId()The id of the user participating in this link.IdentityLinkDtogroupId(String groupId)inthashCode()voidsetGroupId(String groupId)voidsetType(String type)voidsetUserId(String userId)StringtoString()IdentityLinkDtotype(String type)IdentityLinkDtouserId(String userId)
-
-
-
Field Detail
-
SERIALIZED_NAME_USER_ID
public static final String SERIALIZED_NAME_USER_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_GROUP_ID
public static final String SERIALIZED_NAME_GROUP_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
userId
public IdentityLinkDto userId(String userId)
-
getUserId
public String getUserId()
The id of the user participating in this link. Either `userId` or `groupId` is set.- Returns:
- userId
-
setUserId
public void setUserId(String userId)
-
groupId
public IdentityLinkDto groupId(String groupId)
-
getGroupId
public String getGroupId()
The id of the group participating in this link. Either `groupId` or `userId` is set.- Returns:
- groupId
-
setGroupId
public void setGroupId(String groupId)
-
type
public IdentityLinkDto type(String type)
-
getType
public String getType()
The type of the identity link. The value of the this property can be user-defined. The Process Engine provides three pre-defined Identity Link `type`s: * `candidate` * `assignee` - reserved for the task assignee * `owner` - reserved for the task owner **Note**: When adding or removing an Identity Link, the `type` property must be defined.- Returns:
- type
-
setType
public void setType(String type)
-
-