Class GovernancePolicyCreateDetails

java.lang.Object
com.dropbox.core.v2.teamlog.GovernancePolicyCreateDetails

public class GovernancePolicyCreateDetails extends Object
Activated a new policy.
  • Field Details

    • governancePolicyId

      @Nonnull protected final String governancePolicyId
    • name

      @Nonnull protected final String name
    • policyType

      @Nullable protected final PolicyType policyType
    • duration

      @Nonnull protected final DurationLogInfo duration
    • folders

      @Nullable protected final List<String> folders
  • Constructor Details

    • GovernancePolicyCreateDetails

      public GovernancePolicyCreateDetails(@Nonnull String governancePolicyId, @Nonnull String name, @Nonnull DurationLogInfo duration, @Nullable PolicyType policyType, @Nullable List<String> folders)
      Activated a new policy.

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

      Parameters:
      governancePolicyId - Policy ID. Must not be null.
      name - Policy name. Must not be null.
      duration - Duration in days. Must not be null.
      policyType - Policy type.
      folders - Folders. Must not contain a null item.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • GovernancePolicyCreateDetails

      public GovernancePolicyCreateDetails(@Nonnull String governancePolicyId, @Nonnull String name, @Nonnull DurationLogInfo duration)
      Activated a new policy.

      The default values for unset fields will be used.

      Parameters:
      governancePolicyId - Policy ID. Must not be null.
      name - Policy name. Must not be null.
      duration - Duration in days. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getGovernancePolicyId

      @Nonnull public String getGovernancePolicyId()
      Policy ID.
      Returns:
      value for this field, never null.
    • getName

      @Nonnull public String getName()
      Policy name.
      Returns:
      value for this field, never null.
    • getDuration

      @Nonnull public DurationLogInfo getDuration()
      Duration in days.
      Returns:
      value for this field, never null.
    • getPolicyType

      @Nullable public PolicyType getPolicyType()
      Policy type.
      Returns:
      value for this field, or null if not present.
    • getFolders

      @Nullable public List<String> getFolders()
      Folders.
      Returns:
      value for this field, or null if not present.
    • newBuilder

      public static GovernancePolicyCreateDetails.Builder newBuilder(String governancePolicyId, String name, DurationLogInfo duration)
      Returns a new builder for creating an instance of this class.
      Parameters:
      governancePolicyId - Policy ID. Must not be null.
      name - Policy name. Must not be null.
      duration - Duration in days. 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 Object
    • equals

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

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

      public 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