Class HttpTransporterFactory
- java.lang.Object
-
- org.eclipse.aether.transport.http.HttpTransporterFactory
-
- All Implemented Interfaces:
org.eclipse.aether.spi.connector.transport.TransporterFactory
@Named("http") public final class HttpTransporterFactory extends java.lang.Object implements org.eclipse.aether.spi.connector.transport.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 static java.lang.String
NAME
-
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 Instance Methods Concrete Methods Modifier and Type Method Description float
getPriority()
org.eclipse.aether.spi.connector.transport.Transporter
newInstance(org.eclipse.aether.RepositorySystemSession session, org.eclipse.aether.repository.RemoteRepository 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
-
-
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
-
getPriority
public float getPriority()
- Specified by:
getPriority
in interfaceorg.eclipse.aether.spi.connector.transport.TransporterFactory
-
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 org.eclipse.aether.spi.connector.transport.Transporter newInstance(org.eclipse.aether.RepositorySystemSession session, org.eclipse.aether.repository.RemoteRepository repository) throws org.eclipse.aether.transfer.NoTransporterException
- Specified by:
newInstance
in interfaceorg.eclipse.aether.spi.connector.transport.TransporterFactory
- Throws:
org.eclipse.aether.transfer.NoTransporterException
-
-