Package org.eclipse.aether.spi.artifact
Interface ArtifactPredicate
- All Known Implementing Classes:
DefaultArtifactPredicate
public interface ArtifactPredicate
An artifact predicate.
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
hasChecksums
(Artifact artifact) Returnstrue
if passed in artifact should have checksums.boolean
isChecksum
(Artifact artifact) Returnstrue
if passed in artifact is a checksum artifact.boolean
isWithoutChecksum
(Artifact artifact) Returnstrue
if passed in artifact is configured to not have checksums.
-
Method Details
-
hasChecksums
Returnstrue
if passed in artifact should have checksums.Artifact should have checksum if it is not a checksum artifact, or any artifact that has been configured (in session) that should not have them.
-
isWithoutChecksum
Returnstrue
if passed in artifact is configured to not have checksums. -
isChecksum
Returnstrue
if passed in artifact is a checksum artifact.
-