Package com.dropbox.core.v2.teamlog
Class ExternalDriveBackupStatusChangedDetails
- java.lang.Object
-
- com.dropbox.core.v2.teamlog.ExternalDriveBackupStatusChangedDetails
-
public class ExternalDriveBackupStatusChangedDetails extends java.lang.Object
Modified external drive backup.
-
-
Field Summary
Fields Modifier and Type Field Description protected DesktopDeviceSessionLogInfo
desktopDeviceSessionInfo
protected ExternalDriveBackupStatus
newValue
protected ExternalDriveBackupStatus
previousValue
-
Constructor Summary
Constructors Constructor Description ExternalDriveBackupStatusChangedDetails(DesktopDeviceSessionLogInfo desktopDeviceSessionInfo, ExternalDriveBackupStatus previousValue, ExternalDriveBackupStatus newValue)
Modified external drive backup.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
DesktopDeviceSessionLogInfo
getDesktopDeviceSessionInfo()
Device's session logged information.ExternalDriveBackupStatus
getNewValue()
Next status of this external drive backup.ExternalDriveBackupStatus
getPreviousValue()
Previous status of this external drive backup.int
hashCode()
java.lang.String
toString()
java.lang.String
toStringMultiline()
Returns a String representation of this object formatted for easier readability.
-
-
-
Field Detail
-
desktopDeviceSessionInfo
protected final DesktopDeviceSessionLogInfo desktopDeviceSessionInfo
-
previousValue
protected final ExternalDriveBackupStatus previousValue
-
newValue
protected final ExternalDriveBackupStatus newValue
-
-
Constructor Detail
-
ExternalDriveBackupStatusChangedDetails
public ExternalDriveBackupStatusChangedDetails(DesktopDeviceSessionLogInfo desktopDeviceSessionInfo, ExternalDriveBackupStatus previousValue, ExternalDriveBackupStatus newValue)
Modified external drive backup.- Parameters:
desktopDeviceSessionInfo
- Device's session logged information. Must not benull
.previousValue
- Previous status of this external drive backup. Must not benull
.newValue
- Next status of this external drive backup. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getDesktopDeviceSessionInfo
public DesktopDeviceSessionLogInfo getDesktopDeviceSessionInfo()
Device's session logged information.- Returns:
- value for this field, never
null
.
-
getPreviousValue
public ExternalDriveBackupStatus getPreviousValue()
Previous status of this external drive backup.- Returns:
- value for this field, never
null
.
-
getNewValue
public ExternalDriveBackupStatus getNewValue()
Next status of this external drive backup.- Returns:
- value for this field, never
null
.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
toStringMultiline
public java.lang.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
-
-