Uses of Enum
org.eclipse.aether.spi.connector.checksum.ChecksumPolicy.ChecksumKind
Packages that use ChecksumPolicy.ChecksumKind
Package
Description
Support for downloads/uploads using remote repositories that have a URI-based content structure/layout.
The various sub components that collectively implement the repository system.
The support infrastructure for repository connectors to apply checksum policies when validating the integrity of
downloaded files.
-
Uses of ChecksumPolicy.ChecksumKind in org.eclipse.aether.connector.basic
Methods in org.eclipse.aether.connector.basic with parameters of type ChecksumPolicy.ChecksumKindModifier and TypeMethodDescriptionprivate boolean
ChecksumValidator.validateChecksums
(Map<String, ?> actualChecksums, ChecksumPolicy.ChecksumKind kind, Map<String, ?> checksums) -
Uses of ChecksumPolicy.ChecksumKind in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl with parameters of type ChecksumPolicy.ChecksumKindModifier and TypeMethodDescriptionvoid
AbstractChecksumPolicy.onChecksumError
(String algorithm, ChecksumPolicy.ChecksumKind kind, ChecksumFailureException exception) boolean
AbstractChecksumPolicy.onChecksumMatch
(String algorithm, ChecksumPolicy.ChecksumKind kind) void
AbstractChecksumPolicy.onChecksumMismatch
(String algorithm, ChecksumPolicy.ChecksumKind kind, ChecksumFailureException exception) -
Uses of ChecksumPolicy.ChecksumKind in org.eclipse.aether.spi.connector.checksum
Methods in org.eclipse.aether.spi.connector.checksum that return ChecksumPolicy.ChecksumKindModifier and TypeMethodDescriptionstatic ChecksumPolicy.ChecksumKind
Returns the enum constant of this type with the specified name.static ChecksumPolicy.ChecksumKind[]
ChecksumPolicy.ChecksumKind.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.aether.spi.connector.checksum with parameters of type ChecksumPolicy.ChecksumKindModifier and TypeMethodDescriptionvoid
ChecksumPolicy.onChecksumError
(String algorithm, ChecksumPolicy.ChecksumKind kind, ChecksumFailureException exception) Signals an error while computing the local checksum value or retrieving the checksum value from the remote repository.boolean
ChecksumPolicy.onChecksumMatch
(String algorithm, ChecksumPolicy.ChecksumKind kind) Signals a match between the locally computed checksum value and the checksum value declared by the remote repository.void
ChecksumPolicy.onChecksumMismatch
(String algorithm, ChecksumPolicy.ChecksumKind kind, ChecksumFailureException exception) Signals a mismatch between the locally computed checksum value and the checksum value declared by the remote repository.