Uses of Class
org.eclipse.aether.resolution.ArtifactDescriptorResult
Packages that use ArtifactDescriptorResult
Package
Description
The primary API of the
RepositorySystem
and its functionality.The provisional interfaces defining the various sub components that implement the repository system.
The various sub components that collectively implement the repository system.
Internal helper classes for dependency collector.
Utility classes to ease unit testing.
The types supporting the resolution of artifacts and metadata from repositories.
-
Uses of ArtifactDescriptorResult in org.eclipse.aether
Methods in org.eclipse.aether that return ArtifactDescriptorResultModifier and TypeMethodDescriptionRepositorySystem.readArtifactDescriptor
(RepositorySystemSession session, ArtifactDescriptorRequest request) Gets information about an artifact like its direct dependencies and potential relocations. -
Uses of ArtifactDescriptorResult in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl that return ArtifactDescriptorResultModifier and TypeMethodDescriptionArtifactDescriptorReader.readArtifactDescriptor
(RepositorySystemSession session, ArtifactDescriptorRequest request) Gets information about an artifact like its direct dependencies and potential relocations. -
Uses of ArtifactDescriptorResult in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl that return ArtifactDescriptorResultModifier and TypeMethodDescriptionDefaultRepositorySystem.readArtifactDescriptor
(RepositorySystemSession session, ArtifactDescriptorRequest request) -
Uses of ArtifactDescriptorResult in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as ArtifactDescriptorResultModifier and TypeFieldDescription(package private) static final ArtifactDescriptorResult
DataPool.NO_DESCRIPTOR
Methods in org.eclipse.aether.internal.impl.collect that return ArtifactDescriptorResultModifier and TypeMethodDescriptionprivate ArtifactDescriptorResult
DefaultDependencyCollector.getArtifactDescriptorResult
(DefaultDependencyCollector.Args args, DefaultDependencyCollector.Results results, boolean noDescriptor, Dependency d, ArtifactDescriptorRequest descriptorRequest) (package private) ArtifactDescriptorResult
DataPool.getDescriptor
(Object key, ArtifactDescriptorRequest request) private ArtifactDescriptorResult
DefaultDependencyCollector.resolveCachedArtifactDescriptor
(DataPool pool, ArtifactDescriptorRequest descriptorRequest, RepositorySystemSession session, Dependency d, DefaultDependencyCollector.Results results, DefaultDependencyCollector.Args args) DataPool.BadDescriptor.toResult
(ArtifactDescriptorRequest request) abstract ArtifactDescriptorResult
DataPool.Descriptor.toResult
(ArtifactDescriptorRequest request) DataPool.GoodDescriptor.toResult
(ArtifactDescriptorRequest request) Methods in org.eclipse.aether.internal.impl.collect with parameters of type ArtifactDescriptorResultModifier and TypeMethodDescriptionprivate static DefaultDependencyNode
DefaultDependencyCollector.createDependencyNode
(List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, ArtifactDescriptorResult descriptorResult, DependencyNode cycleNode) private void
DefaultDependencyCollector.doRecurse
(DefaultDependencyCollector.Args args, DefaultDependencyCollector.Results results, List<RemoteRepository> repositories, DependencySelector depSelector, DependencyManager depManager, DependencyTraverser depTraverser, VersionFilter verFilter, Dependency d, ArtifactDescriptorResult descriptorResult, DefaultDependencyNode child) (package private) void
DataPool.putDescriptor
(Object key, ArtifactDescriptorResult result) Constructors in org.eclipse.aether.internal.impl.collect with parameters of type ArtifactDescriptorResult -
Uses of ArtifactDescriptorResult in org.eclipse.aether.internal.test.util
Methods in org.eclipse.aether.internal.test.util that return ArtifactDescriptorResultModifier and TypeMethodDescriptionIniArtifactDescriptorReader.readArtifactDescriptor
(RepositorySystemSession session, ArtifactDescriptorRequest request) Parses the resource$prefix/gid_aid_ver.ini
from the request artifact as an artifact description and wraps it into an ArtifactDescriptorResult. -
Uses of ArtifactDescriptorResult in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as ArtifactDescriptorResultModifier and TypeFieldDescriptionprivate final ArtifactDescriptorResult
ArtifactDescriptorException.result
Methods in org.eclipse.aether.resolution that return ArtifactDescriptorResultModifier and TypeMethodDescriptionRecords the specified alias.ArtifactDescriptorResult.addDependency
(Dependency dependency) Adds the specified direct dependency.ArtifactDescriptorResult.addException
(Exception exception) Records the specified exception while reading the artifact descriptor.ArtifactDescriptorResult.addManagedDependency
(Dependency dependency) Adds the specified managed dependency.ArtifactDescriptorResult.addRelocation
(Artifact artifact) Records the specified relocation hop while locating the artifact descriptor.ArtifactDescriptorResult.addRepository
(RemoteRepository repository) Adds the specified remote repository.ArtifactDescriptorException.getResult()
Gets the descriptor result at the point the exception occurred.ArtifactDescriptorResult.setAliases
(Collection<Artifact> aliases) Sets the aliases of the artifact.ArtifactDescriptorResult.setArtifact
(Artifact artifact) Sets the artifact whose descriptor was read.ArtifactDescriptorResult.setDependencies
(List<Dependency> dependencies) Sets the list of direct dependencies of the artifact.ArtifactDescriptorResult.setExceptions
(List<Exception> exceptions) Sets the exceptions that occurred while reading the artifact descriptor.ArtifactDescriptorResult.setManagedDependencies
(List<Dependency> dependencies) Sets the dependency management information.ArtifactDescriptorResult.setProperties
(Map<String, Object> properties) Sets any additional information about the artifact in form of key-value pairs.ArtifactDescriptorResult.setRelocations
(List<Artifact> relocations) Sets the relocations that were processed to read the artifact descriptor.ArtifactDescriptorResult.setRepositories
(List<RemoteRepository> repositories) Sets the remote repositories listed in the artifact descriptor.ArtifactDescriptorResult.setRepository
(ArtifactRepository repository) Sets the repository from which the descriptor was resolved.Methods in org.eclipse.aether.resolution with parameters of type ArtifactDescriptorResultModifier and TypeMethodDescriptionprivate static Throwable
ArtifactDescriptorException.getCause
(ArtifactDescriptorResult result) Constructors in org.eclipse.aether.resolution with parameters of type ArtifactDescriptorResultModifierConstructorDescriptionCreates a new exception with the specified result.ArtifactDescriptorException
(ArtifactDescriptorResult result, String message) Creates a new exception with the specified result and detail message.ArtifactDescriptorException
(ArtifactDescriptorResult result, String message, Throwable cause) Creates a new exception with the specified result, detail message and cause.