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 Details
-
getClient
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
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 grouphttpServiceType
- the type of client proxy- Returns:
- the proxy, or
null
if not found
-