Interface MetadataResolutionRequest
- All Superinterfaces:
RepositoryRequest
- All Known Implementing Classes:
DefaultMetadataResolutionRequest
Forms a request to retrieve artifact metadata.
- Author:
- Benjamin Bentmann
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.maven.artifact.ArtifactGets the artifact to resolve metadata for.org.apache.maven.artifact.repository.ArtifactRepositoryGets the local repository to use for the resolution.List<org.apache.maven.artifact.repository.ArtifactRepository> Gets the remote repositories to use for the resolution.booleanIndicates whether network access to remote repositories has been disabled.booleanDetermines whether the managed version information should be retrieved.setArtifact(org.apache.maven.artifact.Artifact artifact) Sets the artifact for which to resolve metadata.setLocalRepository(org.apache.maven.artifact.repository.ArtifactRepository localRepository) Sets the local repository to use for the resolution.setOffline(boolean offline) Enables/disables network access to remote repositories.setRemoteRepositories(List<org.apache.maven.artifact.repository.ArtifactRepository> remoteRepositories) Sets the remote repositories to use for the resolution.setResolveManagedVersions(boolean resolveManagedVersions) Enables/disables resolution of the dependency management information.Methods inherited from interface RepositoryRequest
isForceUpdate, setForceUpdate
-
Method Details
-
isOffline
boolean isOffline()Indicates whether network access to remote repositories has been disabled.- Specified by:
isOfflinein interfaceRepositoryRequest- Returns:
trueif remote access has been disabled,falseotherwise.
-
setOffline
Enables/disables network access to remote repositories.- Specified by:
setOfflinein interfaceRepositoryRequest- Parameters:
offline-trueto disable remote access,falseto allow network access.- Returns:
- This request, never
null.
-
getArtifact
org.apache.maven.artifact.Artifact getArtifact()Gets the artifact to resolve metadata for.- Returns:
- The artifact to resolve metadata for or
nullif not set.
-
setArtifact
Sets the artifact for which to resolve metadata.- Parameters:
artifact- The artifact for which to resolve metadata.- Returns:
- This request, never
null.
-
getLocalRepository
org.apache.maven.artifact.repository.ArtifactRepository getLocalRepository()Gets the local repository to use for the resolution.- Specified by:
getLocalRepositoryin interfaceRepositoryRequest- Returns:
- The local repository to use for the resolution or
nullif not set.
-
setLocalRepository
MetadataResolutionRequest setLocalRepository(org.apache.maven.artifact.repository.ArtifactRepository localRepository) Sets the local repository to use for the resolution.- Specified by:
setLocalRepositoryin interfaceRepositoryRequest- Parameters:
localRepository- The local repository to use for the resolution.- Returns:
- This request, never
null.
-
getRemoteRepositories
List<org.apache.maven.artifact.repository.ArtifactRepository> getRemoteRepositories()Gets the remote repositories to use for the resolution.- Specified by:
getRemoteRepositoriesin interfaceRepositoryRequest- Returns:
- The remote repositories to use for the resolution, never
null.
-
setRemoteRepositories
MetadataResolutionRequest setRemoteRepositories(List<org.apache.maven.artifact.repository.ArtifactRepository> remoteRepositories) Sets the remote repositories to use for the resolution.- Specified by:
setRemoteRepositoriesin interfaceRepositoryRequest- Parameters:
remoteRepositories- The remote repositories to use for the resolution.- Returns:
- This request, never
null.
-
isResolveManagedVersions
boolean isResolveManagedVersions()Determines whether the managed version information should be retrieved.- Returns:
trueif the dependency management information should be retrieved,falseotherwise.
-
setResolveManagedVersions
Enables/disables resolution of the dependency management information.- Parameters:
resolveManagedVersions-trueif the dependency management information should be retrieved,falseotherwise.- Returns:
- This request, never
null.
-