Class RepositoryPolicy

java.lang.Object
org.apache.maven.profiles.RepositoryPolicy
All Implemented Interfaces:
Serializable

public class RepositoryPolicy extends Object implements Serializable
Download policy.
Version:
$Revision$ $Date$
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private String
    What to do when verification of an artifact checksum fails - warn, fail, etc.
    private boolean
    Whether to use this repository for downloading this type of artifact.
    private String
    The frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Get what to do when verification of an artifact checksum fails - warn, fail, etc.
    Get the frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).
    boolean
    Get whether to use this repository for downloading this type of artifact.
    void
    setChecksumPolicy(String checksumPolicy)
    Set what to do when verification of an artifact checksum fails - warn, fail, etc.
    void
    setEnabled(boolean enabled)
    Set whether to use this repository for downloading this type of artifact.
    void
    setUpdatePolicy(String updatePolicy)
    Set the frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • enabled

      private boolean enabled
      Whether to use this repository for downloading this type of artifact.
    • updatePolicy

      private String updatePolicy
      The frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).
    • checksumPolicy

      private String checksumPolicy
      What to do when verification of an artifact checksum fails - warn, fail, etc. Valid values are "fail" or "warn".
  • Constructor Details

    • RepositoryPolicy

      public RepositoryPolicy()
  • Method Details

    • getChecksumPolicy

      public String getChecksumPolicy()
      Get what to do when verification of an artifact checksum fails - warn, fail, etc. Valid values are "fail" or "warn".
      Returns:
      String
    • getUpdatePolicy

      public String getUpdatePolicy()
      Get the frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).
      Returns:
      String
    • isEnabled

      public boolean isEnabled()
      Get whether to use this repository for downloading this type of artifact.
      Returns:
      boolean
    • setChecksumPolicy

      public void setChecksumPolicy(String checksumPolicy)
      Set what to do when verification of an artifact checksum fails - warn, fail, etc. Valid values are "fail" or "warn".
      Parameters:
      checksumPolicy - a checksumPolicy object.
    • setEnabled

      public void setEnabled(boolean enabled)
      Set whether to use this repository for downloading this type of artifact.
      Parameters:
      enabled - a enabled object.
    • setUpdatePolicy

      public void setUpdatePolicy(String updatePolicy)
      Set the frequency for downloading updates - can be "always", "daily" (default), "interval:XXX" (in minutes) or "never" (only if it doesn't exist locally).
      Parameters:
      updatePolicy - a updatePolicy object.