org.apache.maven.model
Class RepositoryPolicy

java.lang.Object
  extended by org.apache.maven.model.RepositoryPolicy
All Implemented Interfaces:
Serializable

public class RepositoryPolicy
extends Object
implements Serializable

Download policy.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
RepositoryPolicy()
           
 
Method Summary
 String getChecksumPolicy()
          Get What to do when verification of an artifact checksum fails.
 String getModelEncoding()
           
 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).
 boolean isEnabled()
          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 setModelEncoding(String modelEncoding)
          Set an encoding used for reading/writing the model.
 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
 

Constructor Detail

RepositoryPolicy

public RepositoryPolicy()
Method Detail

getChecksumPolicy

public String getChecksumPolicy()
Get What to do when verification of an artifact checksum fails. Valid values are ignore , fail or warn (the default).

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. Valid values are ignore , fail or warn (the default).

Parameters:
checksumPolicy -

setEnabled

public void setEnabled(boolean enabled)
Set whether to use this repository for downloading this type of artifact.

Parameters:
enabled -

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 -

setModelEncoding

public void setModelEncoding(String modelEncoding)
Set an encoding used for reading/writing the model.

Parameters:
modelEncoding - the encoding used when reading/writing the model.

getModelEncoding

public String getModelEncoding()
Returns:
the current encoding used when reading/writing this model.


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.