Interface ProvidedChecksumsSource
Deprecated.
Component able to provide (expected) checksums to connector beforehand the download happens. Checksum provided by
this component are of kind
ChecksumPolicy.ChecksumKind.PROVIDED
.- Since:
- 1.8.0
-
Method Summary
Modifier and TypeMethodDescriptiongetProvidedArtifactChecksums
(RepositorySystemSession session, ArtifactDownload transfer, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories) Deprecated.May return the provided checksums (for given artifact transfer) from source other than remote repository, ornull
if it have no checksums available for given transfer.
-
Method Details
-
getProvidedArtifactChecksums
Map<String,String> getProvidedArtifactChecksums(RepositorySystemSession session, ArtifactDownload transfer, List<ChecksumAlgorithmFactory> checksumAlgorithmFactories) Deprecated.May return the provided checksums (for given artifact transfer) from source other than remote repository, ornull
if it have no checksums available for given transfer. Provided checksums are "opt-in" for transfer, in a way IF they are available upfront, they will be enforced according to checksum policy in effect. Otherwise, provided checksum verification is completely left out.For enabled provided checksum source is completely acceptable to return
null
values, as that carries the meaning "nothing to add here", as there are no checksums to be provided upfront transfer. Semantically, this is equivalent to returning empty map, but signals the intent better.- Parameters:
transfer
- The transfer that is about to be executed.checksumAlgorithmFactories
- The checksum algorithms that are expected.- Returns:
- Map of expected checksums, or
null
.
-
ProvidedChecksumsSource
.