Interface HttpServiceProxyRegistry


public interface HttpServiceProxyRegistry
A registry that contains HTTP Service client proxies.
Since:
7.0
Author:
Rossen Stoyanchev, Olga Maciaszek-Sharma
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    <P> @Nullable P
    getClient(Class<P> httpServiceType)
    Return an HTTP service client proxy from any group as long as there is only one client proxy of the given type across all groups.
    <P> @Nullable P
    getClient(String groupName, Class<P> httpServiceType)
    Return an HTTP service client proxy from the given group.
  • Method Details

    • getClient

      <P> @Nullable P getClient(Class<P> httpServiceType)
      Return an HTTP service client proxy from any group as long as there is only one client proxy of the given type across all groups.
      Type Parameters:
      P - the type of HTTP Interface client proxy
      Parameters:
      httpServiceType - the type of client proxy
      Returns:
      the proxy, or null if not found
      Throws:
      IllegalArgumentException - if more than one client proxy of the given type exists across groups
    • getClient

      <P> @Nullable P getClient(String groupName, Class<P> httpServiceType)
      Return an HTTP service client proxy from the given group.
      Type Parameters:
      P - the type of HTTP Interface client proxy
      Parameters:
      groupName - the name of the group
      httpServiceType - the type of client proxy
      Returns:
      the proxy, or null if not found