Package org.eclipse.aether.artifact
Interface ArtifactTypeRegistry
-
- All Known Implementing Classes:
CachingArtifactTypeRegistry
,DefaultArtifactTypeRegistry
,DefaultRepositorySystemSession.NullArtifactTypeRegistry
,OverlayArtifactTypeRegistry
,SimpleArtifactTypeRegistry
public interface ArtifactTypeRegistry
A registry of known artifact types.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArtifactType
get(java.lang.String typeId)
Gets the artifact type with the specified identifier.
-
-
-
Method Detail
-
get
ArtifactType get(java.lang.String typeId)
Gets the artifact type with the specified identifier.- Parameters:
typeId
- The identifier of the type, must not benull
.- Returns:
- The artifact type or
null
if no type with the requested identifier exists.
-
-