Uses of Class
org.eclipse.aether.spi.connector.checksum.ChecksumPolicy.ChecksumKind
-
Packages that use ChecksumPolicy.ChecksumKind Package Description 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 ChecksumPolicy.ChecksumKind in org.eclipse.aether.spi.connector.checksum
Methods in org.eclipse.aether.spi.connector.checksum that return ChecksumPolicy.ChecksumKind Modifier and Type Method Description static ChecksumPolicy.ChecksumKind
ChecksumPolicy.ChecksumKind. valueOf(java.lang.String name)
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.ChecksumKind Modifier and Type Method Description void
ChecksumPolicy. onChecksumError(java.lang.String algorithm, ChecksumPolicy.ChecksumKind kind, org.eclipse.aether.transfer.ChecksumFailureException exception)
Signals an error while computing the local checksum value or retrieving the checksum value from the remote repository.boolean
ChecksumPolicy. onChecksumMatch(java.lang.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(java.lang.String algorithm, ChecksumPolicy.ChecksumKind kind, org.eclipse.aether.transfer.ChecksumFailureException exception)
Signals a mismatch between the locally computed checksum value and the checksum value declared by the remote repository.
-