Uses of Class
org.eclipse.aether.transfer.ChecksumFailureException
Packages that use ChecksumFailureException
Package
Description
The support infrastructure for repository connectors to apply checksum policies when validating the integrity of
downloaded files.
A listener and various exception types dealing with the transfer of a resource between the local system and a remote
repository.
-
Uses of ChecksumFailureException in org.eclipse.aether.spi.connector.checksum
Methods in org.eclipse.aether.spi.connector.checksum with parameters of type ChecksumFailureExceptionModifier and TypeMethodDescriptionvoidChecksumPolicy.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.voidChecksumPolicy.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.booleanChecksumPolicy.onTransferChecksumFailure(ChecksumFailureException exception) Signals that (even after a potential retry) checksum validation has failed.Methods in org.eclipse.aether.spi.connector.checksum that throw ChecksumFailureExceptionModifier and TypeMethodDescriptionvoidChecksumPolicy.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.voidChecksumPolicy.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.voidChecksumPolicy.onNoMoreChecksums()Signals that all available checksums have been processed. -
Uses of ChecksumFailureException in org.eclipse.aether.transfer
Methods in org.eclipse.aether.transfer that return ChecksumFailureExceptionModifier and TypeMethodDescriptionstatic ChecksumFailureExceptionUse in case of checksum mismatch.static ChecksumFailureExceptionChecksumFailureException.mismatchDetail(String detail, String expected, String expectedKind, String actual) Use in case of checksum mismatch.static ChecksumFailureExceptionChecksumFailureException.noneAvailable(String message, String expectedKind) Use in case of checksum not available.static ChecksumFailureExceptionChecksumFailureException.processingFailure(String message, Throwable cause) Use in case of error, for example IO problem during checksum processing, calculation and alike.