Interface ArtifactPredicate


public interface ArtifactPredicate
An artifact predicate.
Since:
2.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    default boolean
    hasChecksums(org.eclipse.aether.artifact.Artifact artifact)
    Returns true if passed in artifact should have checksums.
    boolean
    isChecksum(org.eclipse.aether.artifact.Artifact artifact)
    Returns true if passed in artifact is a checksum artifact.
    boolean
    isWithoutChecksum(org.eclipse.aether.artifact.Artifact artifact)
    Returns true if passed in artifact is configured to not have checksums.
  • Method Details

    • hasChecksums

      default boolean hasChecksums(org.eclipse.aether.artifact.Artifact artifact)
      Returns true 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

      boolean isWithoutChecksum(org.eclipse.aether.artifact.Artifact artifact)
      Returns true if passed in artifact is configured to not have checksums.
    • isChecksum

      boolean isChecksum(org.eclipse.aether.artifact.Artifact artifact)
      Returns true if passed in artifact is a checksum artifact.