The ProxySearch class only accepts predefined instances of ProxySearchStrategy due to the use of the Strategy enum.
Feature request:
This will allow one to add custom ProxySearchStrategies to the list of possible strategies. I would like to do:
ProxySearch proxySearch = new ProxySearch();
proxySearch.addStrategy(new SomeCustomProxySearchStrategy());
The
ProxySearchclass only accepts predefined instances ofProxySearchStrategydue to the use of theStrategyenum.Feature request:
ProxySearch#addStrategy(ProxySearchStrategy custom)method.This will allow one to add custom ProxySearchStrategies to the list of possible strategies. I would like to do: