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.
|
Modifier and Type | Method and Description |
---|---|
private boolean |
ChecksumValidator.validateChecksums(java.util.Map<java.lang.String,?> actualChecksums,
ChecksumPolicy.ChecksumKind kind,
java.util.Map<java.lang.String,?> checksums) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractChecksumPolicy.onChecksumError(java.lang.String algorithm,
ChecksumPolicy.ChecksumKind kind,
ChecksumFailureException exception) |
boolean |
AbstractChecksumPolicy.onChecksumMatch(java.lang.String algorithm,
ChecksumPolicy.ChecksumKind kind) |
void |
AbstractChecksumPolicy.onChecksumMismatch(java.lang.String algorithm,
ChecksumPolicy.ChecksumKind kind,
ChecksumFailureException exception) |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
ChecksumPolicy.onChecksumError(java.lang.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(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,
ChecksumFailureException exception)
Signals a mismatch between the locally computed checksum value and the checksum value declared by the remote
repository.
|