Class ClasspathTransporterFactory
java.lang.Object
org.eclipse.aether.transport.classpath.ClasspathTransporterFactory
- All Implemented Interfaces:
org.eclipse.aether.spi.connector.transport.TransporterFactory
@Named("classpath")
public final class ClasspathTransporterFactory
extends Object
implements org.eclipse.aether.spi.connector.transport.TransporterFactory
A transporter factory for repositories using the
classpath: protocol. As example, getting an item named
some/file.txt from a repository with the URL classpath:/base/dir results in retrieving the resource
base/dir/some/file.txt from the classpath. The classpath to load the resources from is given via a
ClassLoader that can be configured via the configuration property CONFIG_PROP_CLASS_LOADER.
Note: Such repositories are read-only and uploads to them are generally not supported.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe key in the repository session'sconfiguration propertiesused to store aClassLoaderfrom which resources should be retrieved.static final String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloatorg.eclipse.aether.spi.connector.transport.TransporternewInstance(org.eclipse.aether.RepositorySystemSession session, org.eclipse.aether.repository.RemoteRepository repository) setPriority(float priority) Sets the priority of this component.
-
Field Details
-
NAME
- See Also:
-
CONFIG_PROP_CLASS_LOADER
The key in the repository session'sconfiguration propertiesused to store aClassLoaderfrom which resources should be retrieved. If unspecified, thecontext class loaderof the current thread will be used.- See Also:
- Sourced from:
RepositorySystemSession.getConfigProperties()- Value type:
ClassLoader
-
-
Constructor Details
-
ClasspathTransporterFactory
public ClasspathTransporterFactory()
-
-
Method Details
-
getPriority
- Specified by:
getPriorityin interfaceorg.eclipse.aether.spi.connector.transport.TransporterFactory
-
setPriority
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
-