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 java.lang.Object implements org.eclipse.aether.spi.connector.transport.TransporterFactoryA transporter factory for repositories using theclasspath:protocol. As example, getting an item namedsome/file.txtfrom a repository with the URLclasspath:/base/dirresults in retrieving the resourcebase/dir/some/file.txtfrom the classpath. The classpath to load the resources from is given via aClassLoaderthat can be configured via the configuration propertyCONFIG_PROP_CLASS_LOADER.Note: Such repositories are read-only and uploads to them are generally not supported.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_PROP_CLASS_LOADERThe key in the repository session'sconfiguration propertiesused to store aClassLoaderfrom which resources should be retrieved.static java.lang.StringNAME
-
Constructor Summary
Constructors Constructor Description ClasspathTransporterFactory()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)ClasspathTransporterFactorysetPriority(float priority)Sets the priority of this component.
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
CONFIG_PROP_CLASS_LOADER
public static final java.lang.String 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:
- Constant Field Values
-
-
Constructor Detail
-
ClasspathTransporterFactory
public ClasspathTransporterFactory()
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 ClasspathTransporterFactory 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
-
-