Class FileTransporterFactory
- java.lang.Object
-
- org.eclipse.aether.transport.file.FileTransporterFactory
-
- All Implemented Interfaces:
org.eclipse.aether.spi.connector.transport.TransporterFactory
@Named("file") public final class FileTransporterFactory extends java.lang.Object implements org.eclipse.aether.spi.connector.transport.TransporterFactoryA transporter factory for repositories using thefile:protocol.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNAME
-
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()org.eclipse.aether.spi.connector.transport.TransporternewInstance(org.eclipse.aether.RepositorySystemSession session, org.eclipse.aether.repository.RemoteRepository repository)FileTransporterFactorysetPriority(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
-
FileTransporterFactory
public FileTransporterFactory()
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:
getPriorityin interfaceorg.eclipse.aether.spi.connector.transport.TransporterFactory
-
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 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:
newInstancein interfaceorg.eclipse.aether.spi.connector.transport.TransporterFactory- Throws:
org.eclipse.aether.transfer.NoTransporterException
-
-