private static final SanitizedLogger LOGGER = new SanitizedLogger(PluginClient.class);
final HttpRestUtils httpRestUtils;
public PluginClient(String url, String key) {
PropertiesManager propertiesManager = new PropertiesManager();
propertiesManager.setMemoryKey(key);
propertiesManager.setUrl(url);
httpRestUtils = new HttpRestUtils(propertiesManager);
}