Uses of Class
org.eclipse.aether.resolution.ArtifactResult
-
Packages that use ArtifactResult Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.impl The provisional interfaces defining the various sub components that implement the repository system.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories. -
-
Uses of ArtifactResult in org.eclipse.aether
Methods in org.eclipse.aether that return ArtifactResult Modifier and Type Method Description ArtifactResult
RepositorySystem. resolveArtifact(RepositorySystemSession session, ArtifactRequest request)
Resolves the path for an artifact.Methods in org.eclipse.aether that return types with arguments of type ArtifactResult Modifier and Type Method Description java.util.List<ArtifactResult>
RepositorySystem. resolveArtifacts(RepositorySystemSession session, java.util.Collection<? extends ArtifactRequest> requests)
Resolves the paths for a collection of artifacts. -
Uses of ArtifactResult in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl that return ArtifactResult Modifier and Type Method Description ArtifactResult
ArtifactResolver. resolveArtifact(RepositorySystemSession session, ArtifactRequest request)
Resolves the path for an artifact.Methods in org.eclipse.aether.impl that return types with arguments of type ArtifactResult Modifier and Type Method Description java.util.List<ArtifactResult>
ArtifactResolver. resolveArtifacts(RepositorySystemSession session, java.util.Collection<? extends ArtifactRequest> requests)
Resolves the paths for a collection of artifacts. -
Uses of ArtifactResult in org.eclipse.aether.internal.impl
Fields in org.eclipse.aether.internal.impl declared as ArtifactResult Modifier and Type Field Description (package private) ArtifactResult
DefaultArtifactResolver.ResolutionItem. result
Methods in org.eclipse.aether.internal.impl that return ArtifactResult Modifier and Type Method Description ArtifactResult
DefaultArtifactResolver. resolveArtifact(RepositorySystemSession session, ArtifactRequest request)
ArtifactResult
DefaultRepositorySystem. resolveArtifact(RepositorySystemSession session, ArtifactRequest request)
Methods in org.eclipse.aether.internal.impl that return types with arguments of type ArtifactResult Modifier and Type Method Description private java.util.List<ArtifactResult>
DefaultArtifactResolver. resolve(RepositorySystemSession session, java.util.Collection<? extends ArtifactRequest> requests)
java.util.List<ArtifactResult>
DefaultArtifactResolver. resolveArtifacts(RepositorySystemSession session, java.util.Collection<? extends ArtifactRequest> requests)
java.util.List<ArtifactResult>
DefaultRepositorySystem. resolveArtifacts(RepositorySystemSession session, java.util.Collection<? extends ArtifactRequest> requests)
Method parameters in org.eclipse.aether.internal.impl with type arguments of type ArtifactResult Modifier and Type Method Description private void
DefaultRepositorySystem. updateNodesWithResolvedArtifacts(java.util.List<ArtifactResult> results)
Constructors in org.eclipse.aether.internal.impl with parameters of type ArtifactResult Constructor Description ResolutionItem(RequestTrace trace, Artifact artifact, java.util.concurrent.atomic.AtomicBoolean resolved, ArtifactResult result, LocalArtifactResult local, RemoteRepository repository)
-
Uses of ArtifactResult in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution with type parameters of type ArtifactResult Modifier and Type Field Description private java.util.List<ArtifactResult>
DependencyResult. artifactResults
private java.util.List<ArtifactResult>
ArtifactResolutionException. results
Methods in org.eclipse.aether.resolution that return ArtifactResult Modifier and Type Method Description ArtifactResult
ArtifactResult. addException(java.lang.Exception exception)
Records the specified exception while resolving the artifact.ArtifactResult
ArtifactResolutionException. getResult()
Gets the first result fromArtifactResolutionException.getResults()
.ArtifactResult
ArtifactResult. setArtifact(Artifact artifact)
Sets the resolved artifact.ArtifactResult
ArtifactResult. setRepository(ArtifactRepository repository)
Sets the repository from which the artifact was resolved.Methods in org.eclipse.aether.resolution that return types with arguments of type ArtifactResult Modifier and Type Method Description java.util.List<ArtifactResult>
DependencyResult. getArtifactResults()
Gets the resolution results for the dependency artifacts that matchedDependencyRequest.getFilter()
.java.util.List<ArtifactResult>
ArtifactResolutionException. getResults()
Gets the resolution results at the point the exception occurred.Method parameters in org.eclipse.aether.resolution with type arguments of type ArtifactResult Modifier and Type Method Description private static java.lang.Throwable
ArtifactResolutionException. getCause(java.util.List<? extends ArtifactResult> results)
private static java.lang.String
ArtifactResolutionException. getMessage(java.util.List<? extends ArtifactResult> results)
DependencyResult
DependencyResult. setArtifactResults(java.util.List<ArtifactResult> results)
Sets the resolution results for the artifacts that matchedDependencyRequest.getFilter()
.Constructor parameters in org.eclipse.aether.resolution with type arguments of type ArtifactResult Constructor Description ArtifactResolutionException(java.util.List<ArtifactResult> results)
Creates a new exception with the specified results.ArtifactResolutionException(java.util.List<ArtifactResult> results, java.lang.String message)
Creates a new exception with the specified results and detail message.ArtifactResolutionException(java.util.List<ArtifactResult> results, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified results, detail message and cause.
-