org.eclipse.aether.spi.connector.ArtifactUpload 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 org.eclipse.aether.RequestTrace;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.transfer.ArtifactTransferException;
import org.eclipse.aether.transfer.TransferListener;
/**
* An upload of an artifact to a remote repository. A repository connector processing this upload has to use
* {@link #setException(ArtifactTransferException)} to report the results of the transfer.
*/
public final class ArtifactUpload
extends ArtifactTransfer
{
/**
* Creates a new uninitialized upload.
*/
public ArtifactUpload()
{
// enables default constructor
}
/**
* Creates a new upload with the specified properties.
*
* @param artifact The artifact to upload, may be {@code null}.
* @param file The local file to upload the artifact from, may be {@code null}.
*/
public ArtifactUpload( Artifact artifact, File file )
{
setArtifact( artifact );
setFile( file );
}
@Override
public ArtifactUpload setArtifact( Artifact artifact )
{
super.setArtifact( artifact );
return this;
}
@Override
public ArtifactUpload setFile( File file )
{
super.setFile( file );
return this;
}
@Override
public ArtifactUpload setException( ArtifactTransferException exception )
{
super.setException( exception );
return this;
}
@Override
public ArtifactUpload setListener( TransferListener listener )
{
super.setListener( listener );
return this;
}
@Override
public ArtifactUpload setTrace( RequestTrace trace )
{
super.setTrace( trace );
return this;
}
@Override
public String toString()
{
return getArtifact() + " - " + getFile();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy