Package com.dropbox.core.v2.teamlog
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
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WebDeviceSessionLogInfo.Builder
Builder forWebDeviceSessionLogInfo
.
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
browser
protected java.lang.String
os
protected WebSessionLogInfo
sessionInfo
protected java.lang.String
userAgent
-
Fields inherited from class com.dropbox.core.v2.teamlog.DeviceSessionLogInfo
created, ipAddress, updated
-
-
Constructor Summary
Constructors Constructor Description WebDeviceSessionLogInfo(java.lang.String userAgent, java.lang.String os, java.lang.String browser)
Information on active web sessionsWebDeviceSessionLogInfo(java.lang.String userAgent, java.lang.String os, java.lang.String browser, java.lang.String ipAddress, java.util.Date created, java.util.Date updated, WebSessionLogInfo sessionInfo)
Information on active web sessions
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getBrowser()
Information on the browser used for this web session.java.util.Date
getCreated()
The time this session was created.java.lang.String
getIpAddress()
The IP address of the last activity from this session.java.lang.String
getOs()
Information on the hosting operating system.WebSessionLogInfo
getSessionInfo()
Web session unique id.java.util.Date
getUpdated()
The time of the last activity from this session.java.lang.String
getUserAgent()
Information on the hosting device.int
hashCode()
static WebDeviceSessionLogInfo.Builder
newBuilder(java.lang.String userAgent, java.lang.String os, java.lang.String browser)
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.-
Methods inherited from class com.dropbox.core.v2.teamlog.DeviceSessionLogInfo
newBuilder
-
-
-
-
Field Detail
-
sessionInfo
@Nullable protected final WebSessionLogInfo sessionInfo
-
userAgent
@Nonnull protected final java.lang.String userAgent
-
os
@Nonnull protected final java.lang.String os
-
browser
@Nonnull protected final java.lang.String browser
-
-
Constructor Detail
-
WebDeviceSessionLogInfo
public WebDeviceSessionLogInfo(@Nonnull java.lang.String userAgent, @Nonnull java.lang.String os, @Nonnull java.lang.String browser, @Nullable java.lang.String ipAddress, @Nullable java.util.Date created, @Nullable java.util.Date updated, @Nullable WebSessionLogInfo sessionInfo)
Information on active web sessionsUse
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 benull
.os
- Information on the hosting operating system. Must not benull
.browser
- Information on the browser used for this web session. Must not benull
.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:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
WebDeviceSessionLogInfo
public WebDeviceSessionLogInfo(@Nonnull java.lang.String userAgent, @Nonnull java.lang.String os, @Nonnull java.lang.String browser)
Information on active web sessionsThe default values for unset fields will be used.
- Parameters:
userAgent
- Information on the hosting device. Must not benull
.os
- Information on the hosting operating system. Must not benull
.browser
- Information on the browser used for this web session. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getUserAgent
@Nonnull public java.lang.String getUserAgent()
Information on the hosting device.- Returns:
- value for this field, never
null
.
-
getOs
@Nonnull public java.lang.String getOs()
Information on the hosting operating system.- Returns:
- value for this field, never
null
.
-
getBrowser
@Nonnull public java.lang.String getBrowser()
Information on the browser used for this web session.- Returns:
- value for this field, never
null
.
-
getIpAddress
@Nullable public java.lang.String getIpAddress()
The IP address of the last activity from this session.- Overrides:
getIpAddress
in classDeviceSessionLogInfo
- Returns:
- value for this field, or
null
if not present.
-
getCreated
@Nullable public java.util.Date getCreated()
The time this session was created.- Overrides:
getCreated
in classDeviceSessionLogInfo
- Returns:
- value for this field, or
null
if not present.
-
getUpdated
@Nullable public java.util.Date getUpdated()
The time of the last activity from this session.- Overrides:
getUpdated
in classDeviceSessionLogInfo
- 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(java.lang.String userAgent, java.lang.String os, java.lang.String browser)
Returns a new builder for creating an instance of this class.- Parameters:
userAgent
- Information on the hosting device. Must not benull
.os
- Information on the hosting operating system. Must not benull
.browser
- Information on the browser used for this web session. Must not benull
.- Returns:
- builder for this class.
- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classDeviceSessionLogInfo
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classDeviceSessionLogInfo
-
toString
public java.lang.String toString()
- Overrides:
toString
in classDeviceSessionLogInfo
-
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 classDeviceSessionLogInfo
- Returns:
- Formatted, multiline String representation of this object
-
-