Added the possibility to create a client instance by context

This commit is contained in:
Luca Frosini 2023-02-27 18:52:23 +01:00
parent 59f4abda63
commit a0dd4422b0
1 changed files with 6 additions and 0 deletions

View File

@ -18,4 +18,10 @@ public class ResourceRegistryClientFactory {
return new ResourceRegistryClientImpl(address);
}
public static ResourceRegistryClient create(String context) {
String address = String.format("%s/%s", ServiceInstance.getServiceURL(context),Constants.SERVICE_NAME);
logger.trace("The {} will be contacted at {}", Constants.SERVICE_NAME, address);
return new ResourceRegistryClientImpl(address);
}
}