org.eclipse.aether.spi.connector.MetadataDownload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aether-spi Show documentation
Show all versions of aether-spi Show documentation
The service provider interface for repository system implementations and repository connectors.
/*******************************************************************************
* Copyright (c) 2010, 2013 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.aether.spi.connector;
import java.io.File;
import java.util.Collections;
import java.util.List;
import org.eclipse.aether.RequestTrace;
import org.eclipse.aether.metadata.Metadata;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.transfer.MetadataTransferException;
import org.eclipse.aether.transfer.TransferListener;
/**
* A download of metadata from a remote repository. A repository connector processing this download has to use
* {@link #setException(MetadataTransferException)} to report the results of the transfer.
*/
public final class MetadataDownload
extends MetadataTransfer
{
private String checksumPolicy = "";
private String context = "";
private List repositories = Collections.emptyList();
/**
* Creates a new uninitialized download.
*/
public MetadataDownload()
{
// enables default constructor
}
/**
* Creates a new download with the specified properties.
*
* @param metadata The metadata to download, may be {@code null}.
* @param context The context in which this download is performed, may be {@code null}.
* @param file The local file to download the metadata to, may be {@code null}.
* @param checksumPolicy The checksum policy, may be {@code null}.
*/
public MetadataDownload( Metadata metadata, String context, File file, String checksumPolicy )
{
setMetadata( metadata );
setFile( file );
setChecksumPolicy( checksumPolicy );
setRequestContext( context );
}
@Override
public MetadataDownload setMetadata( Metadata metadata )
{
super.setMetadata( metadata );
return this;
}
@Override
public MetadataDownload setFile( File file )
{
super.setFile( file );
return this;
}
/**
* Gets the checksum policy for this transfer.
*
* @return The checksum policy, never {@code null}.
*/
public String getChecksumPolicy()
{
return checksumPolicy;
}
/**
* Sets the checksum policy for this transfer.
*
* @param checksumPolicy The checksum policy, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
*/
public MetadataDownload setChecksumPolicy( String checksumPolicy )
{
this.checksumPolicy = ( checksumPolicy != null ) ? checksumPolicy : "";
return this;
}
/**
* Gets the context of this transfer.
*
* @return The context id, never {@code null}.
*/
public String getRequestContext()
{
return context;
}
/**
* Sets the request context of this transfer.
*
* @param context The context id, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
*/
public MetadataDownload setRequestContext( String context )
{
this.context = ( context != null ) ? context : "";
return this;
}
/**
* Gets the remote repositories that are being aggregated by the physically contacted remote repository (i.e. a
* repository manager).
*
* @return The remote repositories being aggregated, never {@code null}.
*/
public List getRepositories()
{
return repositories;
}
/**
* Sets the remote repositories that are being aggregated by the physically contacted remote repository (i.e. a
* repository manager).
*
* @param repositories The remote repositories being aggregated, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
*/
public MetadataDownload setRepositories( List repositories )
{
if ( repositories == null )
{
this.repositories = Collections.emptyList();
}
else
{
this.repositories = repositories;
}
return this;
}
@Override
public MetadataDownload setException( MetadataTransferException exception )
{
super.setException( exception );
return this;
}
@Override
public MetadataDownload setListener( TransferListener listener )
{
super.setListener( listener );
return this;
}
@Override
public MetadataDownload setTrace( RequestTrace trace )
{
super.setTrace( trace );
return this;
}
@Override
public String toString()
{
return getMetadata() + " - " + getFile();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy