public class UserMembershipInfo extends MembershipInfo
Modifier and Type | Class and Description |
---|---|
static class |
UserMembershipInfo.Builder
Builder for
UserMembershipInfo . |
Modifier and Type | Field and Description |
---|---|
protected UserInfo |
user |
accessType, initials, isInherited, permissions
Constructor and Description |
---|
UserMembershipInfo(AccessLevel accessType,
UserInfo user)
The information about a user member of the shared content.
|
UserMembershipInfo(AccessLevel accessType,
UserInfo user,
java.util.List<MemberPermission> permissions,
java.lang.String initials,
boolean isInherited)
The information about a user 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.
|
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.
|
UserInfo |
getUser()
The account information for the membership user.
|
int |
hashCode() |
static UserMembershipInfo.Builder |
newBuilder(AccessLevel accessType,
UserInfo user)
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.
|
newBuilder
protected final UserInfo user
public UserMembershipInfo(AccessLevel accessType, UserInfo user, 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
.user
- The account information for the membership user. 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 UserMembershipInfo(AccessLevel accessType, UserInfo user)
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
.user
- The account information for the membership user. Must not be
null
.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public AccessLevel getAccessType()
getAccessType
in class MembershipInfo
null
.public UserInfo getUser()
null
.public java.util.List<MemberPermission> getPermissions()
getPermissions
in class MembershipInfo
null
if not present.public java.lang.String getInitials()
getInitials
in class MembershipInfo
null
if not present.public boolean getIsInherited()
getIsInherited
in class MembershipInfo
null
if not present. Defaults to
false.public static UserMembershipInfo.Builder newBuilder(AccessLevel accessType, UserInfo user)
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
.user
- The account information for the membership user. Must not be
null
.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public int hashCode()
hashCode
in class MembershipInfo
public boolean equals(java.lang.Object obj)
equals
in class MembershipInfo
public java.lang.String toString()
toString
in class MembershipInfo
public java.lang.String toStringMultiline()
The returned String may contain newlines.
toStringMultiline
in class MembershipInfo