Package org.eclipse.aether.util.artifact
Class OverlayArtifactTypeRegistry
java.lang.Object
org.eclipse.aether.util.artifact.SimpleArtifactTypeRegistry
org.eclipse.aether.util.artifact.OverlayArtifactTypeRegistry
- All Implemented Interfaces:
ArtifactTypeRegistry
An artifact type registry which first consults its own mappings and in case of an unknown type falls back to another
type registry.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new artifact type registry with initially no registered artifact types and the specified fallback registry. -
Method Summary
Modifier and TypeMethodDescriptionadd
(ArtifactType type) Adds the specified artifact type to the registry.Gets the artifact type with the specified identifier.Methods inherited from class org.eclipse.aether.util.artifact.SimpleArtifactTypeRegistry
toString
-
Field Details
-
delegate
-
-
Constructor Details
-
OverlayArtifactTypeRegistry
Creates a new artifact type registry with initially no registered artifact types and the specified fallback registry. Useadd(ArtifactType)
to populate the registry.- Parameters:
delegate
- The artifact type registry to fall back to, may benull
.
-
-
Method Details
-
add
Adds the specified artifact type to the registry.- Overrides:
add
in classSimpleArtifactTypeRegistry
- Parameters:
type
- The artifact type to add, must not benull
.- Returns:
- This registry for chaining, never
null
.
-
get
Description copied from interface:ArtifactTypeRegistry
Gets the artifact type with the specified identifier.- Specified by:
get
in interfaceArtifactTypeRegistry
- Overrides:
get
in classSimpleArtifactTypeRegistry
- Parameters:
typeId
- The identifier of the type, must not benull
.- Returns:
- The artifact type or
null
if no type with the requested identifier exists.
-