Class GroupUserLink
- java.lang.Object
-
- org.silverpeas.core.admin.user.notification.GroupUserLink
-
- All Implemented Interfaces:
Serializable
public class GroupUserLink extends Object implements Serializable
A link between a given user and a given group of users in Silverpeas. The link symbolizes the belonging of a user to a group in Silverpeas. This class is mainly used in the notification of that an operations about the link between a user and a group has been performed.- Author:
- mmoquillon
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GroupUserLink(String groupId, String userId)
Constructs a new link of bounding between a given group and the specified user.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGroupId()
The group of users related by this link.String
getUserId()
The user concerned by the link with a group of users.
-
-
-
Constructor Detail
-
GroupUserLink
public GroupUserLink(String groupId, String userId)
Constructs a new link of bounding between a given group and the specified user.- Parameters:
groupId
- the unique identifier of a group of users in Silverpeas.userId
- the unique identifier of the user linked or to link with the group.
-
-