Uses of Class
org.eclipse.aether.resolution.ArtifactResult
-
Packages that use ArtifactResult Package Description org.eclipse.aether The primary API of theRepositorySystemand its functionality.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 ArtifactResultRepositorySystem. 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.resolution
Methods in org.eclipse.aether.resolution that return ArtifactResult Modifier and Type Method Description ArtifactResultArtifactResult. addException(java.lang.Exception exception)Records the specified exception while resolving the artifact.ArtifactResultArtifactResolutionException. getResult()Gets the first result fromArtifactResolutionException.getResults().ArtifactResultArtifactResult. setArtifact(Artifact artifact)Sets the resolved artifact.ArtifactResultArtifactResult. 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 DependencyResultDependencyResult. 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.
-