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 |
---|---|
boolean |
ChecksumValidator.handle(ChecksumFailureException exception) |
Modifier and Type | Method and Description |
---|---|
void |
ChecksumValidator.validate(java.util.Map<java.lang.String,?> actualChecksums,
java.util.Map<java.lang.String,?> inlinedChecksums) |
private boolean |
ChecksumValidator.validateExternalChecksums(java.util.Map<java.lang.String,?> actualChecksums) |
private boolean |
ChecksumValidator.validateInlinedChecksums(java.util.Map<java.lang.String,?> actualChecksums,
java.util.Map<java.lang.String,?> inlinedChecksums) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractChecksumPolicy.onChecksumError(java.lang.String algorithm,
int kind,
ChecksumFailureException exception) |
void |
AbstractChecksumPolicy.onChecksumMismatch(java.lang.String algorithm,
int kind,
ChecksumFailureException exception) |
boolean |
WarnChecksumPolicy.onTransferChecksumFailure(ChecksumFailureException exception) |
boolean |
FailChecksumPolicy.onTransferChecksumFailure(ChecksumFailureException error) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractChecksumPolicy.onChecksumError(java.lang.String algorithm,
int kind,
ChecksumFailureException exception) |
void |
AbstractChecksumPolicy.onChecksumMismatch(java.lang.String algorithm,
int kind,
ChecksumFailureException exception) |
void |
AbstractChecksumPolicy.onNoMoreChecksums() |
Modifier and Type | Method and Description |
---|---|
void |
ChecksumPolicy.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.
|
void |
ChecksumPolicy.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.
|
boolean |
ChecksumPolicy.onTransferChecksumFailure(ChecksumFailureException exception)
Signals that (even after a potential retry) checksum validation has failed.
|
Modifier and Type | Method and Description |
---|---|
void |
ChecksumPolicy.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.
|
void |
ChecksumPolicy.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.
|
void |
ChecksumPolicy.onNoMoreChecksums()
Signals that all available checksums have been processed.
|