Uses of Class
org.eclipse.aether.spi.connector.layout.RepositoryLayout.ChecksumLocation
-
Packages that use RepositoryLayout.ChecksumLocation 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.layout The contract to locate URI-based resources using custom repository layouts. -
-
Uses of RepositoryLayout.ChecksumLocation in org.eclipse.aether.connector.basic
Fields in org.eclipse.aether.connector.basic with type parameters of type RepositoryLayout.ChecksumLocation Modifier and Type Field Description private java.util.Collection<RepositoryLayout.ChecksumLocation>
BasicRepositoryConnector.PutTaskRunner. checksumLocations
private java.util.Collection<RepositoryLayout.ChecksumLocation>
ChecksumValidator. checksumLocations
Constructor parameters in org.eclipse.aether.connector.basic with type arguments of type RepositoryLayout.ChecksumLocation Constructor Description PutTaskRunner(java.net.URI path, java.io.File file, java.util.List<RepositoryLayout.ChecksumLocation> checksumLocations, TransferTransportListener<?> listener)
PutTaskRunner(java.net.URI path, java.io.File file, FileTransformer fileTransformer, java.util.List<RepositoryLayout.ChecksumLocation> checksumLocations, TransferTransportListener<?> listener)
IMPORTANT When using a fileTransformer, the content of the file is stored in memory to ensure that file content and checksums stay in sync! -
Uses of RepositoryLayout.ChecksumLocation in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl that return types with arguments of type RepositoryLayout.ChecksumLocation Modifier and Type Method Description private java.util.List<RepositoryLayout.ChecksumLocation>
Maven2RepositoryLayoutFactory.Maven2RepositoryLayout. getChecksumLocations(java.net.URI location)
java.util.List<RepositoryLayout.ChecksumLocation>
Maven2RepositoryLayoutFactory.Maven2RepositoryLayout. getChecksumLocations(Artifact artifact, boolean upload, java.net.URI location)
java.util.List<RepositoryLayout.ChecksumLocation>
Maven2RepositoryLayoutFactory.Maven2RepositoryLayout. getChecksumLocations(Metadata metadata, boolean upload, java.net.URI location)
-
Uses of RepositoryLayout.ChecksumLocation in org.eclipse.aether.spi.connector.layout
Methods in org.eclipse.aether.spi.connector.layout that return RepositoryLayout.ChecksumLocation Modifier and Type Method Description static RepositoryLayout.ChecksumLocation
RepositoryLayout.ChecksumLocation. forLocation(java.net.URI location, ChecksumAlgorithmFactory checksumAlgorithmFactory)
Creates a checksum descriptor for the specified artifact/metadata location and algorithm.Methods in org.eclipse.aether.spi.connector.layout that return types with arguments of type RepositoryLayout.ChecksumLocation Modifier and Type Method Description java.util.List<RepositoryLayout.ChecksumLocation>
RepositoryLayout. getChecksumLocations(Artifact artifact, boolean upload, java.net.URI location)
Gets the checksums files that a remote repository keeps to help detect data corruption during transfers of the specified artifact.java.util.List<RepositoryLayout.ChecksumLocation>
RepositoryLayout. getChecksumLocations(Metadata metadata, boolean upload, java.net.URI location)
Gets the checksums files that a remote repository keeps to help detect data corruption during transfers of the specified metadata.
-