org.sonatype.aether.connector.async
Class AsyncRepositoryConnectorFactory

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

@Component(role=RepositoryConnectorFactory.class,
           hint="async-http")
public class AsyncRepositoryConnectorFactory
extends java.lang.Object
implements RepositoryConnectorFactory, Service

A repository connector factory that uses Async Http Client for the transfers.

Author:
Jeanfrancois Arcand

Constructor Summary
AsyncRepositoryConnectorFactory()
           
AsyncRepositoryConnectorFactory(Logger logger, FileProcessor fileProcessor)
           
 
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.
 AsyncRepositoryConnectorFactory setFileProcessor(FileProcessor fileProcessor)
          Sets the file processor to use for this component.
 AsyncRepositoryConnectorFactory setLogger(Logger logger)
          Sets the logger to use for this component.
 AsyncRepositoryConnectorFactory setPriority(int priority)
          Sets the priority of this component.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AsyncRepositoryConnectorFactory

public AsyncRepositoryConnectorFactory()

AsyncRepositoryConnectorFactory

public AsyncRepositoryConnectorFactory(Logger logger,
                                       FileProcessor fileProcessor)
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 AsyncRepositoryConnectorFactory 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 AsyncRepositoryConnectorFactory 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.

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 AsyncRepositoryConnectorFactory 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.