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,
java.util.List<MemberPermission> permissions,
java.lang.String initials,
boolean isInherited)
The information about a group member of the shared content.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
AccessLevel |
getAccessType()
The access type for this member.
|
GroupInfo |
getGroup()
The information about the membership group.
|
java.lang.String |
getInitials()
Never set.
|
boolean |
getIsInherited()
True if the member has access from a parent folder.
|
java.util.List<MemberPermission> |
getPermissions()
The permissions that requesting user has on this member.
|
int |
hashCode() |
static GroupMembershipInfo.Builder |
newBuilder(AccessLevel accessType,
GroupInfo group)
Returns a new builder for creating an instance of this class.
|
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
newBuilderprotected final GroupInfo group
public GroupMembershipInfo(AccessLevel accessType, GroupInfo group, java.util.List<MemberPermission> permissions, java.lang.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. It contains inherited
access type from parent folder, and acquired access type from this
folder. 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 - Never set.isInherited - True if the member has access from a parent folder.java.lang.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. It contains inherited
access type from parent folder, and acquired access type from this
folder. Must not be null.group - The information about the membership group. Must not be
null.java.lang.IllegalArgumentException - If any argument does not meet its
preconditions.public AccessLevel getAccessType()
getAccessType in class MembershipInfonull.public GroupInfo getGroup()
null.public java.util.List<MemberPermission> getPermissions()
getPermissions in class MembershipInfonull if not present.public java.lang.String getInitials()
getInitials in class MembershipInfonull if not present.public boolean getIsInherited()
getIsInherited in class MembershipInfonull if not present. Defaults to
false.public static GroupMembershipInfo.Builder newBuilder(AccessLevel accessType, GroupInfo group)
accessType - The access type for this member. It contains inherited
access type from parent folder, and acquired access type from this
folder. Must not be null.group - The information about the membership group. Must not be
null.java.lang.IllegalArgumentException - If any argument does not meet its
preconditions.public int hashCode()
hashCode in class MembershipInfopublic boolean equals(java.lang.Object obj)
equals in class MembershipInfopublic java.lang.String toString()
toString in class MembershipInfopublic java.lang.String toStringMultiline()
The returned String may contain newlines.
toStringMultiline in class MembershipInfo