Uses of Class
org.eclipse.aether.transfer.ChecksumFailureException
-
Packages that use ChecksumFailureException Package Description org.eclipse.aether.connector.basic Support for downloads/uploads using remote repositories that have a URI-based content structure/layout.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.org.eclipse.aether.spi.connector.checksum The support infrastructure for repository connectors to apply checksum policies when validating the integrity of downloaded files. -
-
Uses of ChecksumFailureException in org.eclipse.aether.connector.basic
Methods in org.eclipse.aether.connector.basic with parameters of type ChecksumFailureException Modifier and Type Method Description booleanChecksumValidator. handle(ChecksumFailureException exception)Methods in org.eclipse.aether.connector.basic that throw ChecksumFailureException Modifier and Type Method Description voidChecksumValidator. validate(java.util.Map<java.lang.String,?> actualChecksums, java.util.Map<java.lang.String,?> inlinedChecksums)private booleanChecksumValidator. validateExternalChecksums(java.util.Map<java.lang.String,?> actualChecksums)private booleanChecksumValidator. validateInlinedChecksums(java.util.Map<java.lang.String,?> actualChecksums, java.util.Map<java.lang.String,?> inlinedChecksums) -
Uses of ChecksumFailureException in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl with parameters of type ChecksumFailureException Modifier and Type Method Description voidAbstractChecksumPolicy. onChecksumError(java.lang.String algorithm, int kind, ChecksumFailureException exception)voidAbstractChecksumPolicy. onChecksumMismatch(java.lang.String algorithm, int kind, ChecksumFailureException exception)booleanFailChecksumPolicy. onTransferChecksumFailure(ChecksumFailureException error)booleanWarnChecksumPolicy. onTransferChecksumFailure(ChecksumFailureException exception)Methods in org.eclipse.aether.internal.impl that throw ChecksumFailureException Modifier and Type Method Description voidAbstractChecksumPolicy. onChecksumError(java.lang.String algorithm, int kind, ChecksumFailureException exception)voidAbstractChecksumPolicy. onChecksumMismatch(java.lang.String algorithm, int kind, ChecksumFailureException exception)voidAbstractChecksumPolicy. onNoMoreChecksums() -
Uses of ChecksumFailureException in org.eclipse.aether.spi.connector.checksum
Methods in org.eclipse.aether.spi.connector.checksum with parameters of type ChecksumFailureException Modifier and Type Method Description voidChecksumPolicy. onChecksumError(java.lang.String algorithm, int kind, ChecksumFailureException exception)Signals an error while computing the local checksum value or retrieving the checksum value from the remote repository.voidChecksumPolicy. onChecksumMismatch(java.lang.String algorithm, int 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 ChecksumFailureException Modifier and Type Method Description voidChecksumPolicy. onChecksumError(java.lang.String algorithm, int kind, ChecksumFailureException exception)Signals an error while computing the local checksum value or retrieving the checksum value from the remote repository.voidChecksumPolicy. onChecksumMismatch(java.lang.String algorithm, int 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.
-