org.sonatype.aether.connector.wagon
Class WagonRepositoryConnectorFactory

java.lang.Object
  extended by org.sonatype.aether.connector.wagon.WagonRepositoryConnectorFactory
All Implemented Interfaces:
RepositoryConnectorFactory, Service

@Component(role=RepositoryConnectorFactory.class,
           hint="wagon")
public class WagonRepositoryConnectorFactory
extends Object
implements RepositoryConnectorFactory, Service

A repository connector factory that uses Maven Wagon for the transfers.

Author:
Benjamin Bentmann

Constructor Summary
WagonRepositoryConnectorFactory()
           
WagonRepositoryConnectorFactory(Logger logger, FileProcessor fileProcessor, WagonProvider wagonProvider, WagonConfigurator wagonConfigurator)
           
 
Method Summary
 int getPriority()
          The priority of this factory.
 void initService(ServiceLocator locator)
          Provides the opportunity to initialize this service and to acquire other services for its operation from the locator.
 RepositoryConnector newInstance(RepositorySystemSession session, RemoteRepository repository)
          Tries to create a repository connector for the specified remote repository.
 WagonRepositoryConnectorFactory setFileProcessor(FileProcessor fileProcessor)
          Sets the file processor to use for this component.
 WagonRepositoryConnectorFactory setLogger(Logger logger)
          Sets the logger to use for this component.
 WagonRepositoryConnectorFactory setPriority(int priority)
          Sets the priority of this component.
 WagonRepositoryConnectorFactory setWagonConfigurator(WagonConfigurator wagonConfigurator)
          Sets the wagon configurator to use to apply provider-specific configuration to wagon instances.
 WagonRepositoryConnectorFactory setWagonProvider(WagonProvider wagonProvider)
          Sets the wagon provider to use to acquire and release wagon instances.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WagonRepositoryConnectorFactory

public WagonRepositoryConnectorFactory()

WagonRepositoryConnectorFactory

public WagonRepositoryConnectorFactory(Logger logger,
                                       FileProcessor fileProcessor,
                                       WagonProvider wagonProvider,
                                       WagonConfigurator wagonConfigurator)
Method Detail

initService

public void initService(ServiceLocator locator)
Description copied from interface: Service
Provides the opportunity to initialize this service and to acquire other services for its operation from the locator. A service must not save the reference to the provided service locator.

Specified by:
initService in interface Service
Parameters:
locator - The service locator, must not be null.

setLogger

public WagonRepositoryConnectorFactory setLogger(Logger logger)
Sets the logger to use for this component.

Parameters:
logger - The logger to use, may be null to disable logging.
Returns:
This component for chaining, never null.

setFileProcessor

public WagonRepositoryConnectorFactory setFileProcessor(FileProcessor fileProcessor)
Sets the file processor to use for this component.

Parameters:
fileProcessor - The file processor to use, must not be null.
Returns:
This component for chaining, never null.

setWagonProvider

public WagonRepositoryConnectorFactory setWagonProvider(WagonProvider wagonProvider)
Sets the wagon provider to use to acquire and release wagon instances.

Parameters:
wagonProvider - The wagon provider to use, may be null.
Returns:
This factory for chaining, never null.

setWagonConfigurator

public WagonRepositoryConnectorFactory setWagonConfigurator(WagonConfigurator wagonConfigurator)
Sets the wagon configurator to use to apply provider-specific configuration to wagon instances.

Parameters:
wagonConfigurator - The wagon configurator to use, may be null.
Returns:
This factory for chaining, never null.

getPriority

public int getPriority()
Description copied from interface: RepositoryConnectorFactory
The priority of this factory. Factories with higher priority are preferred over those with lower priority.

Specified by:
getPriority in interface RepositoryConnectorFactory
Returns:
The priority of this factory.

setPriority

public WagonRepositoryConnectorFactory setPriority(int priority)
Sets the priority of this component.

Parameters:
priority - The priority.
Returns:
This component for chaining, never null.

newInstance

public RepositoryConnector newInstance(RepositorySystemSession session,
                                       RemoteRepository repository)
                                throws NoRepositoryConnectorException
Description copied from interface: RepositoryConnectorFactory
Tries to create a repository connector for the specified remote repository. Typically, a factory will inspect RemoteRepository.getProtocol() and RemoteRepository.getContentType() to determine whether it can handle a repository.

Specified by:
newInstance in interface RepositoryConnectorFactory
Parameters:
session - The repository system session from which to configure the connector, must not be null. In particular, a connector must notify any RepositorySystemSession.getTransferListener() set for the session and should obey the timeouts configured for the session.
repository - The remote repository to create a connector for, must not be null.
Returns:
The connector for the given repository, never null.
Throws:
NoRepositoryConnectorException - If the factory cannot create a connector for the specified remote repository.


Copyright © 2010-2011 Sonatype, Inc.. All Rights Reserved.