Package org.apache.maven.model
Class RepositoryPolicy
java.lang.Object
org.apache.maven.model.RepositoryPolicy
- All Implemented Interfaces:
Serializable
,Cloneable
,InputLocationTracker
public class RepositoryPolicy
extends Object
implements Serializable, Cloneable, InputLocationTracker
Download policy.
- Version:
- $Revision$ $Date$
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate String
What to do when verification of an artifact checksum fails.private InputLocation
Field checksumPolicyLocation.private String
Whether to use this repository for downloading this type of artifact.private InputLocation
Field enabledLocation.private InputLocation
Field location.private Map<Object,
InputLocation> Field locations.private String
The frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally).private InputLocation
Field updatePolicyLocation. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()
Method clone.Get what to do when verification of an artifact checksum fails.Get whether to use this repository for downloading this type of artifact.getLocation
(Object key) Gets the location of the specified field in the input source.private InputLocation
getOtherLocation
(Object key) Get the frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally).boolean
void
setChecksumPolicy
(String checksumPolicy) Set what to do when verification of an artifact checksum fails.void
setEnabled
(boolean enabled) void
setEnabled
(String enabled) Set whether to use this repository for downloading this type of artifact.void
setLocation
(Object key, InputLocation location) Sets the location of the specified field.void
setOtherLocation
(Object key, InputLocation location) void
setUpdatePolicy
(String updatePolicy) Set the frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally).
-
Field Details
-
enabled
Whether to use this repository for downloading this type of artifact. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
. -
updatePolicy
The frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally). -
checksumPolicy
What to do when verification of an artifact checksum fails. Valid values areignore
,fail
orwarn
(the default). -
locations
Field locations. -
location
Field location. -
enabledLocation
Field enabledLocation. -
updatePolicyLocation
Field updatePolicyLocation. -
checksumPolicyLocation
Field checksumPolicyLocation.
-
-
Constructor Details
-
RepositoryPolicy
public RepositoryPolicy()
-
-
Method Details
-
clone
Method clone. -
getChecksumPolicy
Get what to do when verification of an artifact checksum fails. Valid values areignore
,fail
orwarn
(the default).- Returns:
- String
-
getEnabled
Get whether to use this repository for downloading this type of artifact. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
.- Returns:
- String
-
getLocation
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
setLocation
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.location
- a location object.
-
setOtherLocation
- Parameters:
key
- a key object.location
- a location object.
-
getOtherLocation
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
getUpdatePolicy
Get the frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally).- Returns:
- String
-
setChecksumPolicy
Set what to do when verification of an artifact checksum fails. Valid values areignore
,fail
orwarn
(the default).- Parameters:
checksumPolicy
- a checksumPolicy object.
-
setEnabled
Set whether to use this repository for downloading this type of artifact. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
.- Parameters:
enabled
- a enabled object.
-
setUpdatePolicy
Set the frequency for downloading updates - can bealways,
daily
(default),interval:XXX
(in minutes) ornever
(only if it doesn't exist locally).- Parameters:
updatePolicy
- a updatePolicy object.
-
isEnabled
public boolean isEnabled() -
setEnabled
public void setEnabled(boolean enabled)
-