Class FileTransporterFactory
java.lang.Object
org.eclipse.aether.transport.file.FileTransporterFactory
- All Implemented Interfaces:
TransporterFactory
@Named("file")
public final class FileTransporterFactory
extends Object
implements TransporterFactory
A transporter factory for repositories using the
file:
or bundle:
protocol.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloat
The priority of this factory.newInstance
(RepositorySystemSession session, RemoteRepository repository) Creates new instance ofFileTransporter
.setPriority
(float priority) Sets the priority of this component.
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
FileTransporterFactory
public FileTransporterFactory()
-
-
Method Details
-
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
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 Creates new instance ofFileTransporter
.- Specified by:
newInstance
in interfaceTransporterFactory
- Parameters:
session
- The session.repository
- The remote repository.- Returns:
- The transporter for the given repository, never
null
. - Throws:
NoTransporterException
- If the factory cannot create a transporter for the specified remote repository.
-