Uses of Interface
org.eclipse.aether.artifact.ArtifactTypeRegistry
-
Packages that use ArtifactTypeRegistry Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.internal.impl.collect Internal helper classes for dependency collector.org.eclipse.aether.util.artifact Utilities around artifacts and artifact type registries. -
-
Uses of ArtifactTypeRegistry in org.eclipse.aether
Classes in org.eclipse.aether that implement ArtifactTypeRegistry Modifier and Type Class Description (package private) static class
DefaultRepositorySystemSession.NullArtifactTypeRegistry
Fields in org.eclipse.aether declared as ArtifactTypeRegistry Modifier and Type Field Description private ArtifactTypeRegistry
DefaultRepositorySystemSession. artifactTypeRegistry
static ArtifactTypeRegistry
DefaultRepositorySystemSession.NullArtifactTypeRegistry. INSTANCE
Methods in org.eclipse.aether that return ArtifactTypeRegistry Modifier and Type Method Description ArtifactTypeRegistry
AbstractForwardingRepositorySystemSession. getArtifactTypeRegistry()
ArtifactTypeRegistry
DefaultRepositorySystemSession. getArtifactTypeRegistry()
ArtifactTypeRegistry
RepositorySystemSession. getArtifactTypeRegistry()
Gets the registry of artifact types recognized by this session, for instance when processing artifact descriptors.Methods in org.eclipse.aether with parameters of type ArtifactTypeRegistry Modifier and Type Method Description DefaultRepositorySystemSession
DefaultRepositorySystemSession. setArtifactTypeRegistry(ArtifactTypeRegistry artifactTypeRegistry)
Sets the registry of artifact types recognized by this session. -
Uses of ArtifactTypeRegistry in org.eclipse.aether.internal.impl.collect
Classes in org.eclipse.aether.internal.impl.collect that implement ArtifactTypeRegistry Modifier and Type Class Description (package private) class
CachingArtifactTypeRegistry
A short-lived artifact type registry that caches results from a presumedly slower type registry.Fields in org.eclipse.aether.internal.impl.collect declared as ArtifactTypeRegistry Modifier and Type Field Description private ArtifactTypeRegistry
CachingArtifactTypeRegistry. delegate
Methods in org.eclipse.aether.internal.impl.collect that return ArtifactTypeRegistry Modifier and Type Method Description static ArtifactTypeRegistry
CachingArtifactTypeRegistry. newInstance(ArtifactTypeRegistry delegate)
static ArtifactTypeRegistry
CachingArtifactTypeRegistry. newInstance(RepositorySystemSession session)
Methods in org.eclipse.aether.internal.impl.collect with parameters of type ArtifactTypeRegistry Modifier and Type Method Description static ArtifactTypeRegistry
CachingArtifactTypeRegistry. newInstance(ArtifactTypeRegistry delegate)
Constructors in org.eclipse.aether.internal.impl.collect with parameters of type ArtifactTypeRegistry Constructor Description CachingArtifactTypeRegistry(ArtifactTypeRegistry delegate)
-
Uses of ArtifactTypeRegistry in org.eclipse.aether.util.artifact
Classes in org.eclipse.aether.util.artifact that implement ArtifactTypeRegistry Modifier and Type Class Description class
DefaultArtifactTypeRegistry
A simple artifact type registry.class
OverlayArtifactTypeRegistry
An artifact type registry which first consults its own mappings and in case of an unknown type falls back to another type registry.(package private) class
SimpleArtifactTypeRegistry
A simple map-based artifact type registry.Fields in org.eclipse.aether.util.artifact declared as ArtifactTypeRegistry Modifier and Type Field Description private ArtifactTypeRegistry
OverlayArtifactTypeRegistry. delegate
Constructors in org.eclipse.aether.util.artifact with parameters of type ArtifactTypeRegistry Constructor Description OverlayArtifactTypeRegistry(ArtifactTypeRegistry delegate)
Creates a new artifact type registry with initially no registered artifact types and the specified fallback registry.
-