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:
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Get what to do when verification of an artifact checksum fails.
    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.
    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 Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details Link icon

    • RepositoryPolicy Link icon

      public RepositoryPolicy()
  • Method Details Link icon

    • getChecksumPolicy Link icon

      public String getChecksumPolicy()
      Get what to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and above), "warn" (default for Maven 2 and 3) or "ignore".
      Returns:
      String
    • getUpdatePolicy Link icon

      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 Link icon

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

      public void setChecksumPolicy(String checksumPolicy)
      Set what to do when verification of an artifact checksum fails. Valid values are "fail" (default for Maven 4 and above), "warn" (default for Maven 2 and 3) or "ignore".
      Parameters:
      checksumPolicy - a checksumPolicy object.
    • setEnabled Link icon

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

      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.