Interface ServiceLocator


public interface ServiceLocator
Locates additional service implementation classes to be instantiated by the ServiceLoader
Author:
Lincoln Baxter, III
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> Collection<Class<T>>
    locate(Class<T> type)
    Locate additional class types of which can be produced by this ServiceLocator.
  • Method Details

    • locate

      <T> Collection<Class<T>> locate(Class<T> type)
      Locate additional class types of which can be produced by this ServiceLocator. If no services could be located, this method must return an empty collection.