Package com.dropbox.core.v2.teamlog
Class GovernancePolicyEditDurationDetails
- java.lang.Object
-
- com.dropbox.core.v2.teamlog.GovernancePolicyEditDurationDetails
-
public class GovernancePolicyEditDurationDetails extends java.lang.Object
Changed policy duration.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
governancePolicyId
protected java.lang.String
name
protected DurationLogInfo
newValue
protected PolicyType
policyType
protected DurationLogInfo
previousValue
-
Constructor Summary
Constructors Constructor Description GovernancePolicyEditDurationDetails(java.lang.String governancePolicyId, java.lang.String name, DurationLogInfo previousValue, DurationLogInfo newValue)
Changed policy duration.GovernancePolicyEditDurationDetails(java.lang.String governancePolicyId, java.lang.String name, DurationLogInfo previousValue, DurationLogInfo newValue, PolicyType policyType)
Changed policy duration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getGovernancePolicyId()
Policy ID.java.lang.String
getName()
Policy name.DurationLogInfo
getNewValue()
To.PolicyType
getPolicyType()
Policy type.DurationLogInfo
getPreviousValue()
From.int
hashCode()
java.lang.String
toString()
java.lang.String
toStringMultiline()
Returns a String representation of this object formatted for easier readability.
-
-
-
Field Detail
-
governancePolicyId
protected final java.lang.String governancePolicyId
-
name
protected final java.lang.String name
-
policyType
protected final PolicyType policyType
-
previousValue
protected final DurationLogInfo previousValue
-
newValue
protected final DurationLogInfo newValue
-
-
Constructor Detail
-
GovernancePolicyEditDurationDetails
public GovernancePolicyEditDurationDetails(java.lang.String governancePolicyId, java.lang.String name, DurationLogInfo previousValue, DurationLogInfo newValue, PolicyType policyType)
Changed policy duration.- Parameters:
governancePolicyId
- Policy ID. Must not benull
.name
- Policy name. Must not benull
.previousValue
- From. Must not benull
.newValue
- To. Must not benull
.policyType
- Policy type.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
GovernancePolicyEditDurationDetails
public GovernancePolicyEditDurationDetails(java.lang.String governancePolicyId, java.lang.String name, DurationLogInfo previousValue, DurationLogInfo newValue)
Changed policy duration.The default values for unset fields will be used.
- Parameters:
governancePolicyId
- Policy ID. Must not benull
.name
- Policy name. Must not benull
.previousValue
- From. Must not benull
.newValue
- To. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getGovernancePolicyId
public java.lang.String getGovernancePolicyId()
Policy ID.- Returns:
- value for this field, never
null
.
-
getName
public java.lang.String getName()
Policy name.- Returns:
- value for this field, never
null
.
-
getPreviousValue
public DurationLogInfo getPreviousValue()
From.- Returns:
- value for this field, never
null
.
-
getNewValue
public DurationLogInfo getNewValue()
To.- Returns:
- value for this field, never
null
.
-
getPolicyType
public PolicyType getPolicyType()
Policy type.- Returns:
- value for this field, or
null
if not present.
-
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
-
-