Class HttpTransporterFactory
- java.lang.Object
-
- org.eclipse.aether.transport.http.HttpTransporterFactory
-
- All Implemented Interfaces:
TransporterFactory
@Named("http") public final class HttpTransporterFactory extends java.lang.Object implements TransporterFactory
A transporter factory for repositories using thehttp:
orhttps:
protocol. The provided transporters support uploads to WebDAV servers and resumable downloads.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,ChecksumExtractor>
extractors
static java.lang.String
NAME
private float
priority
-
Constructor Summary
Constructors Constructor Description HttpTransporterFactory()
Deprecated.HttpTransporterFactory(java.util.Map<java.lang.String,ChecksumExtractor> extractors)
Creates an (uninitialized) instance of this transporter factory.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static java.util.Map<java.lang.String,ChecksumExtractor>
getManuallyCreatedExtractors()
float
getPriority()
The priority of this factory.Transporter
newInstance(RepositorySystemSession session, RemoteRepository repository)
Tries to create a transporter for the specified remote repository.HttpTransporterFactory
setPriority(float priority)
Sets the priority of this component.
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
priority
private float priority
-
extractors
private final java.util.Map<java.lang.String,ChecksumExtractor> extractors
-
-
Constructor Detail
-
HttpTransporterFactory
@Deprecated public HttpTransporterFactory()
Deprecated.Ctor for ServiceLocator.
-
HttpTransporterFactory
@Inject public HttpTransporterFactory(java.util.Map<java.lang.String,ChecksumExtractor> extractors)
Creates an (uninitialized) instance of this transporter factory. Note: In case of manual instantiation by clients, the new factory needs to be configured via its various mutators before first use or runtime errors will occur.
-
-
Method Detail
-
getManuallyCreatedExtractors
private static java.util.Map<java.lang.String,ChecksumExtractor> getManuallyCreatedExtractors()
-
getPriority
public float getPriority()
Description copied from interface:TransporterFactory
The priority of this factory. When multiple factories can handle a given repository, factories with higher priority are preferred over those with lower priority.- Specified by:
getPriority
in interfaceTransporterFactory
- Returns:
- The priority of this factory.
-
setPriority
public HttpTransporterFactory setPriority(float priority)
Sets the priority of this component.- Parameters:
priority
- The priority.- Returns:
- This component for chaining, never
null
.
-
newInstance
public Transporter newInstance(RepositorySystemSession session, RemoteRepository repository) throws NoTransporterException
Description copied from interface:TransporterFactory
Tries to create a transporter for the specified remote repository. Typically, a factory will inspectRemoteRepository.getProtocol()
to determine whether it can handle a repository.- Specified by:
newInstance
in interfaceTransporterFactory
- Parameters:
session
- The repository system session from which to configure the transporter, must not benull
. In particular, a transporter should obey the timeouts configured for the session.repository
- The remote repository to create a transporter for, must not benull
.- Returns:
- The transporter for the given repository, never
null
. - Throws:
NoTransporterException
- If the factory cannot create a transporter for the specified remote repository.
-
-