Class FileTransporterFactory
- java.lang.Object
-
- org.eclipse.aether.transport.file.FileTransporterFactory
-
- All Implemented Interfaces:
TransporterFactory
@Named("file") public final class FileTransporterFactory extends java.lang.Object implements TransporterFactoryA transporter factory for repositories using thefile:protocol.
-
-
Field Summary
Fields Modifier and Type Field Description private floatpriority
-
Constructor Summary
Constructors Constructor Description FileTransporterFactory()Creates an (uninitialized) instance of this transporter factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetPriority()The priority of this factory.TransporternewInstance(RepositorySystemSession session, RemoteRepository repository)Tries to create a transporter for the specified remote repository.FileTransporterFactorysetPriority(float priority)Sets the priority of this component.
-
-
-
Method Detail
-
getPriority
public float getPriority()
Description copied from interface:TransporterFactoryThe 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:
getPriorityin interfaceTransporterFactory- Returns:
- The priority of this factory.
-
setPriority
public FileTransporterFactory 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:TransporterFactoryTries 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:
newInstancein 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.
-
-