Class MembershipInfo

java.lang.Object
com.dropbox.core.v2.sharing.MembershipInfo
Direct Known Subclasses:
GroupMembershipInfo, InviteeMembershipInfo, UserMembershipInfo

public class MembershipInfo extends Object
The information about a member of the shared content.
  • Field Details

    • accessType

      @Nonnull protected final AccessLevel accessType
    • permissions

      @Nullable protected final List<MemberPermission> permissions
    • initials

      @Nullable protected final String initials
    • isInherited

      protected final boolean isInherited
  • Constructor Details

    • MembershipInfo

      public MembershipInfo(@Nonnull AccessLevel accessType, @Nullable List<MemberPermission> permissions, @Nullable String initials, boolean isInherited)
      The information about a member of the shared content.

      Use newBuilder(com.dropbox.core.v2.sharing.AccessLevel) to create instances of this class without specifying values for all optional fields.

      Parameters:
      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.
      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 - Field is deprecated. Never set.
      isInherited - True if the member has access on a parent folder.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • MembershipInfo

      public MembershipInfo(@Nonnull AccessLevel accessType)
      The information about a member of the shared content.

      The default values for unset fields will be used.

      Parameters:
      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.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getAccessType

      @Nonnull public AccessLevel getAccessType()
      The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder.
      Returns:
      value for this field, never null.
    • getPermissions

      @Nullable public List<MemberPermission> getPermissions()
      The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request.
      Returns:
      value for this field, or null if not present.
    • getInitials

      @Deprecated @Nullable public String getInitials()
      Deprecated.
      Field is deprecated. Never set.
      Returns:
      value for this field, or null if not present.
    • getIsInherited

      public boolean getIsInherited()
      True if the member has access on a parent folder.
      Returns:
      value for this field, or null if not present. Defaults to false.
    • newBuilder

      public static MembershipInfo.Builder newBuilder(AccessLevel accessType)
      Returns a new builder for creating an instance of this class.
      Parameters:
      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.
      Returns:
      builder for this class.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toStringMultiline

      public String toStringMultiline()
      Returns a String representation of this object formatted for easier readability.

      The returned String may contain newlines.

      Returns:
      Formatted, multiline String representation of this object