Class SimpleResolutionErrorPolicy
- java.lang.Object
-
- org.eclipse.aether.util.repository.SimpleResolutionErrorPolicy
-
- All Implemented Interfaces:
ResolutionErrorPolicy
public final class SimpleResolutionErrorPolicy extends Object implements ResolutionErrorPolicy
A resolution error policy that allows to control caching for artifacts and metadata at a global level.
-
-
Field Summary
-
Fields inherited from interface org.eclipse.aether.resolution.ResolutionErrorPolicy
CACHE_ALL, CACHE_DISABLED, CACHE_NOT_FOUND, CACHE_TRANSFER_ERROR
-
-
Constructor Summary
Constructors Constructor Description SimpleResolutionErrorPolicy(boolean cacheNotFound, boolean cacheTransferErrors)Creates a new error policy with the specified behavior for both artifacts and metadata.SimpleResolutionErrorPolicy(int policy)Creates a new error policy with the specified bit mask for both artifacts and metadata.SimpleResolutionErrorPolicy(int artifactPolicy, int metadataPolicy)Creates a new error policy with the specified bit masks for artifacts and metadata.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetArtifactPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Artifact> request)intgetMetadataPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Metadata> request)
-
-
-
Constructor Detail
-
SimpleResolutionErrorPolicy
public SimpleResolutionErrorPolicy(boolean cacheNotFound, boolean cacheTransferErrors)
Creates a new error policy with the specified behavior for both artifacts and metadata.- Parameters:
cacheNotFound-trueto enable caching of missing items,falseto disable it.cacheTransferErrors-trueto enable chaching of transfer errors,falseto disable it.
-
SimpleResolutionErrorPolicy
public SimpleResolutionErrorPolicy(int policy)
Creates a new error policy with the specified bit mask for both artifacts and metadata.- Parameters:
policy- The bit mask describing the policy for artifacts and metadata.
-
SimpleResolutionErrorPolicy
public SimpleResolutionErrorPolicy(int artifactPolicy, int metadataPolicy)
Creates a new error policy with the specified bit masks for artifacts and metadata.- Parameters:
artifactPolicy- The bit mask describing the policy for artifacts.metadataPolicy- The bit mask describing the policy for metadata.
-
-
Method Detail
-
getArtifactPolicy
public int getArtifactPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Artifact> request)
- Specified by:
getArtifactPolicyin interfaceResolutionErrorPolicy
-
getMetadataPolicy
public int getMetadataPolicy(RepositorySystemSession session, ResolutionErrorPolicyRequest<Metadata> request)
- Specified by:
getMetadataPolicyin interfaceResolutionErrorPolicy
-
-