Package org.eclipse.aether.spi.locator
Interface Service
-
public interface Service
A stateless component of the repository system. The primary purpose of this interface is to provide a convenient means to programmatically wire the several components of the repository system together when it is used outside of an IoC container.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initService(ServiceLocator locator)
Provides the opportunity to initialize this service and to acquire other services for its operation from the locator.
-
-
-
Method Detail
-
initService
void initService(ServiceLocator locator)
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.- Parameters:
locator
- The service locator, must not benull
.
-
-