org.eclipse.aether.spi.connector.ArtifactTransfer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-resolver-spi Show documentation
Show all versions of maven-resolver-spi Show documentation
The service provider interface for repository system implementations and repository connectors.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.eclipse.aether.spi.connector;
import java.io.File;
import java.nio.file.Path;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.transfer.ArtifactTransferException;
/**
* A download/upload of an artifact.
*
* @noextend This class is not intended to be extended by clients.
*/
public abstract class ArtifactTransfer extends Transfer {
private Artifact artifact;
private Path path;
private ArtifactTransferException exception;
ArtifactTransfer() {
// hide
}
/**
* Gets the artifact being transferred.
*
* @return The artifact being transferred or {@code null} if not set.
*/
public Artifact getArtifact() {
return artifact;
}
/**
* Sets the artifact to transfer.
*
* @param artifact The artifact, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
*/
public ArtifactTransfer setArtifact(Artifact artifact) {
this.artifact = artifact;
return this;
}
/**
* Gets the local file the artifact is downloaded to or uploaded from. In case of a download, a connector should
* first transfer the bytes to a temporary file and only overwrite the target file once the entire download is
* completed such that an interrupted/failed download does not corrupt the current file contents.
*
* @return The local file or {@code null} if not set.
* @deprecated Use {@link #getPath()} instead.
*/
@Deprecated
public File getFile() {
return path != null ? path.toFile() : null;
}
/**
* Gets the local file the artifact is downloaded to or uploaded from. In case of a download, a connector should
* first transfer the bytes to a temporary file and only overwrite the target file once the entire download is
* completed such that an interrupted/failed download does not corrupt the current file contents.
*
* @return The local file or {@code null} if not set.
* @since 2.0.0
*/
public Path getPath() {
return path;
}
/**
* Sets the local file the artifact is downloaded to or uploaded from.
*
* @param file The local file, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
* @deprecated Use {@link #setPath(Path)} instead.
*/
@Deprecated
public ArtifactTransfer setFile(File file) {
return setPath(file != null ? file.toPath() : null);
}
/**
* Sets the local file the artifact is downloaded to or uploaded from.
*
* @param path The local file, may be {@code null}.
* @return This transfer for chaining, never {@code null}.
* @since 2.0.0
*/
public ArtifactTransfer setPath(Path path) {
this.path = path;
return this;
}
/**
* Gets the exception that occurred during the transfer (if any).
*
* @return The exception or {@code null} if the transfer was successful.
*/
public ArtifactTransferException getException() {
return exception;
}
/**
* Sets the exception that occurred during the transfer.
*
* @param exception The exception, may be {@code null} to denote a successful transfer.
* @return This transfer for chaining, never {@code null}.
*/
public ArtifactTransfer setException(ArtifactTransferException exception) {
this.exception = exception;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy