public class GroupMembershipInfo extends MembershipInfo
| Modifier and Type | Class and Description |
|---|---|
static class |
GroupMembershipInfo.Builder
Builder for
GroupMembershipInfo. |
| Modifier and Type | Field and Description |
|---|---|
protected GroupInfo |
group |
accessType, initials, isInherited, permissions| Constructor and Description |
|---|
GroupMembershipInfo(AccessLevel accessType,
GroupInfo group)
The information about a group member of the shared content.
|
GroupMembershipInfo(AccessLevel accessType,
GroupInfo group,
List<MemberPermission> permissions,
String initials,
boolean isInherited)
The information about a group member of the shared content.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
GroupInfo |
getGroup()
The information about the membership group.
|
int |
hashCode() |
static GroupMembershipInfo.Builder |
newBuilder(AccessLevel accessType,
GroupInfo group)
Returns a new builder for creating an instance of this class.
|
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
getAccessType, getInitials, getIsInherited, getPermissions, newBuilderprotected final GroupInfo group
public GroupMembershipInfo(AccessLevel accessType, GroupInfo group, List<MemberPermission> permissions, String initials, boolean isInherited)
Use newBuilder to create instances of this class without
specifying values for all optional fields.
accessType - The access type for this member. Must not be null.group - The information about the membership group. Must not be
null.permissions - The permissions that requesting user has on this
member. The set of permissions corresponds to the MemberActions in
the request. Must not contain a null item.initials - Suggested name initials for a member.isInherited - True if the member has access from a parent folder.IllegalArgumentException - If any argument does not meet its
preconditions.public GroupMembershipInfo(AccessLevel accessType, GroupInfo group)
The default values for unset fields will be used.
accessType - The access type for this member. Must not be null.group - The information about the membership group. Must not be
null.IllegalArgumentException - If any argument does not meet its
preconditions.public GroupInfo getGroup()
null.public static GroupMembershipInfo.Builder newBuilder(AccessLevel accessType, GroupInfo group)
accessType - The access type for this member. Must not be null.group - The information about the membership group. Must not be
null.IllegalArgumentException - If any argument does not meet its
preconditions.public int hashCode()
hashCode in class MembershipInfopublic boolean equals(Object obj)
equals in class MembershipInfopublic String toString()
toString in class MembershipInfopublic String toStringMultiline()
The returned String may contain newlines.
toStringMultiline in class MembershipInfo