org.sonatype.aether.connector.file
Class FileRepositoryConnectorFactory

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

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

Factory creating FileRepositoryConnectors.

Author:
Benjamin Hanzelmann

Field Summary
static String CFG_PREFIX
           
 
Constructor Summary
FileRepositoryConnectorFactory()
           
FileRepositoryConnectorFactory(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.
 FileRepositoryConnectorFactory setFileProcessor(FileProcessor fileProcessor)
          Sets the file processor to use for this component.
 FileRepositoryConnectorFactory setLogger(Logger logger)
          Sets the logger to use for this component.
 FileRepositoryConnectorFactory 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
 

Field Detail

CFG_PREFIX

public static final String CFG_PREFIX
See Also:
Constant Field Values
Constructor Detail

FileRepositoryConnectorFactory

public FileRepositoryConnectorFactory()

FileRepositoryConnectorFactory

public FileRepositoryConnectorFactory(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 FileRepositoryConnectorFactory 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 FileRepositoryConnectorFactory 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.

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.

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 FileRepositoryConnectorFactory setPriority(int priority)
Sets the priority of this component.

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


Copyright © 2010-2013. All Rights Reserved.