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 booleanChecksumValidator.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 TypeMethodDescriptionvoidAbstractChecksumPolicy.onChecksumError(String algorithm, ChecksumPolicy.ChecksumKind kind, ChecksumFailureException exception) booleanAbstractChecksumPolicy.onChecksumMatch(String algorithm, ChecksumPolicy.ChecksumKind kind) voidAbstractChecksumPolicy.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.ChecksumKindReturns 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 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.booleanChecksumPolicy.onChecksumMatch(String algorithm, ChecksumPolicy.ChecksumKind kind) Signals a match between the locally computed checksum value and the checksum value declared by 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.