Class MobileDeviceSessionLogInfo


  • public class MobileDeviceSessionLogInfo
    extends DeviceSessionLogInfo
    Information about linked Dropbox mobile client sessions
    • Field Detail

      • deviceName

        protected final java.lang.String deviceName
      • clientVersion

        protected final java.lang.String clientVersion
      • osVersion

        protected final java.lang.String osVersion
      • lastCarrier

        protected final java.lang.String lastCarrier
    • Constructor Detail

      • MobileDeviceSessionLogInfo

        public MobileDeviceSessionLogInfo​(java.lang.String deviceName,
                                          MobileClientPlatform clientType,
                                          java.lang.String ipAddress,
                                          java.util.Date created,
                                          java.util.Date updated,
                                          MobileSessionLogInfo sessionInfo,
                                          java.lang.String clientVersion,
                                          java.lang.String osVersion,
                                          java.lang.String lastCarrier)
        Information about linked Dropbox mobile client sessions

        Use newBuilder(java.lang.String,com.dropbox.core.v2.team.MobileClientPlatform) to create instances of this class without specifying values for all optional fields.

        Parameters:
        deviceName - The device name. Must not be null.
        clientType - The mobile application type. 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 - Mobile session unique id.
        clientVersion - The Dropbox client version.
        osVersion - The hosting OS version.
        lastCarrier - last carrier used by the device.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • MobileDeviceSessionLogInfo

        public MobileDeviceSessionLogInfo​(java.lang.String deviceName,
                                          MobileClientPlatform clientType)
        Information about linked Dropbox mobile client sessions

        The default values for unset fields will be used.

        Parameters:
        deviceName - The device name. Must not be null.
        clientType - The mobile application type. Must not be null.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getDeviceName

        public java.lang.String getDeviceName()
        The device name.
        Returns:
        value for this field, never null.
      • getClientType

        public MobileClientPlatform getClientType()
        The mobile application type.
        Returns:
        value for this field, never null.
      • getIpAddress

        public java.lang.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

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

        public java.util.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

        public MobileSessionLogInfo getSessionInfo()
        Mobile session unique id.
        Returns:
        value for this field, or null if not present.
      • getClientVersion

        public java.lang.String getClientVersion()
        The Dropbox client version.
        Returns:
        value for this field, or null if not present.
      • getOsVersion

        public java.lang.String getOsVersion()
        The hosting OS version.
        Returns:
        value for this field, or null if not present.
      • getLastCarrier

        public java.lang.String getLastCarrier()
        last carrier used by the device.
        Returns:
        value for this field, or null if not present.
      • newBuilder

        public static MobileDeviceSessionLogInfo.Builder newBuilder​(java.lang.String deviceName,
                                                                    MobileClientPlatform clientType)
        Returns a new builder for creating an instance of this class.
        Parameters:
        deviceName - The device name. Must not be null.
        clientType - The mobile application type. Must not be null.
        Returns:
        builder for this class.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • toStringMultiline

        public java.lang.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