Class WebDeviceSessionLogInfo

java.lang.Object
com.dropbox.core.v2.teamlog.DeviceSessionLogInfo
com.dropbox.core.v2.teamlog.WebDeviceSessionLogInfo

public class WebDeviceSessionLogInfo extends DeviceSessionLogInfo
Information on active web sessions
  • Field Details

    • sessionInfo

      @Nullable protected final WebSessionLogInfo sessionInfo
    • userAgent

      @Nonnull protected final String userAgent
    • os

      @Nonnull protected final String os
    • browser

      @Nonnull protected final String browser
  • Constructor Details

    • WebDeviceSessionLogInfo

      public WebDeviceSessionLogInfo(@Nonnull String userAgent, @Nonnull String os, @Nonnull String browser, @Nullable String ipAddress, @Nullable Date created, @Nullable Date updated, @Nullable WebSessionLogInfo sessionInfo)
      Information on active web sessions

      Use newBuilder(java.lang.String,java.lang.String,java.lang.String) to create instances of this class without specifying values for all optional fields.

      Parameters:
      userAgent - Information on the hosting device. Must not be null.
      os - Information on the hosting operating system. Must not be null.
      browser - Information on the browser used for this web session. Must not be null.
      ipAddress - The IP address of the last activity from this session.
      created - The time this session was created.
      updated - The time of the last activity from this session.
      sessionInfo - Web session unique id.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • WebDeviceSessionLogInfo

      public WebDeviceSessionLogInfo(@Nonnull String userAgent, @Nonnull String os, @Nonnull String browser)
      Information on active web sessions

      The default values for unset fields will be used.

      Parameters:
      userAgent - Information on the hosting device. Must not be null.
      os - Information on the hosting operating system. Must not be null.
      browser - Information on the browser used for this web session. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getUserAgent

      @Nonnull public String getUserAgent()
      Information on the hosting device.
      Returns:
      value for this field, never null.
    • getOs

      @Nonnull public String getOs()
      Information on the hosting operating system.
      Returns:
      value for this field, never null.
    • getBrowser

      @Nonnull public String getBrowser()
      Information on the browser used for this web session.
      Returns:
      value for this field, never null.
    • getIpAddress

      @Nullable public String getIpAddress()
      The IP address of the last activity from this session.
      Overrides:
      getIpAddress in class DeviceSessionLogInfo
      Returns:
      value for this field, or null if not present.
    • getCreated

      @Nullable public Date getCreated()
      The time this session was created.
      Overrides:
      getCreated in class DeviceSessionLogInfo
      Returns:
      value for this field, or null if not present.
    • getUpdated

      @Nullable public Date getUpdated()
      The time of the last activity from this session.
      Overrides:
      getUpdated in class DeviceSessionLogInfo
      Returns:
      value for this field, or null if not present.
    • getSessionInfo

      @Nullable public WebSessionLogInfo getSessionInfo()
      Web session unique id.
      Returns:
      value for this field, or null if not present.
    • newBuilder

      public static WebDeviceSessionLogInfo.Builder newBuilder(String userAgent, String os, String browser)
      Returns a new builder for creating an instance of this class.
      Parameters:
      userAgent - Information on the hosting device. Must not be null.
      os - Information on the hosting operating system. Must not be null.
      browser - Information on the browser used for this web session. 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 DeviceSessionLogInfo
    • equals

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

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

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

      The returned String may contain newlines.

      Overrides:
      toStringMultiline in class DeviceSessionLogInfo
      Returns:
      Formatted, multiline String representation of this object