Class LoginFailDetails

java.lang.Object
com.dropbox.core.v2.teamlog.LoginFailDetails

public class LoginFailDetails extends Object
Failed to sign in.
  • Field Details

    • isEmmManaged

      @Nullable protected final Boolean isEmmManaged
    • loginMethod

      @Nonnull protected final LoginMethod loginMethod
    • errorDetails

      @Nonnull protected final FailureDetailsLogInfo errorDetails
  • Constructor Details

    • LoginFailDetails

      public LoginFailDetails(@Nonnull LoginMethod loginMethod, @Nonnull FailureDetailsLogInfo errorDetails, @Nullable Boolean isEmmManaged)
      Failed to sign in.
      Parameters:
      loginMethod - Login method. Must not be null.
      errorDetails - Error details. Must not be null.
      isEmmManaged - Tells if the login device is EMM managed. Might be missing due to historical data gap.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • LoginFailDetails

      public LoginFailDetails(@Nonnull LoginMethod loginMethod, @Nonnull FailureDetailsLogInfo errorDetails)
      Failed to sign in.

      The default values for unset fields will be used.

      Parameters:
      loginMethod - Login method. Must not be null.
      errorDetails - Error details. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getLoginMethod

      @Nonnull public LoginMethod getLoginMethod()
      Login method.
      Returns:
      value for this field, never null.
    • getErrorDetails

      @Nonnull public FailureDetailsLogInfo getErrorDetails()
      Error details.
      Returns:
      value for this field, never null.
    • getIsEmmManaged

      @Nullable public Boolean getIsEmmManaged()
      Tells if the login device is EMM managed. Might be missing due to historical data gap.
      Returns:
      value for this field, or null if not present.
    • 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