Added the possibility to create a client instance by context

This commit is contained in:
Luca Frosini 2023-02-27 18:55:03 +01:00
parent b0c8db59ee
commit 18df6a0257
1 changed files with 6 additions and 0 deletions

View File

@ -17,5 +17,11 @@ public class ResourceRegistryQueryTemplateClientFactory {
logger.trace("The {} will be contacted at {}", Constants.SERVICE_NAME, address);
return new ResourceRegistryQueryTemplateClientImpl(address);
}
public static ResourceRegistryQueryTemplateClient 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 ResourceRegistryQueryTemplateClientImpl(address);
}
}