Add support for specifying the `Proxy-Authorization` header for the PluginManager
| | |
| | | # SINCE 1.7.0 |
| | | plugins.httpProxyPort = |
| | | |
| | | # The HTTP proxy authorization header for plugin manager. |
| | | # |
| | | # SINCE 1.7.0 |
| | | plugins.httpProxyAuthorization = |
| | | |
| | | # Number of threads used to handle miscellaneous tasks in the background. |
| | | # |
| | | # SINCE 1.6.0 |
| | |
| | | } |
| | | |
| | | protected String getProxyAuthorization(URL url) { |
| | | return ""; |
| | | String proxyAuth = runtimeManager.getSettings().getString(Keys.plugins.httpProxyAuthorization, ""); |
| | | return proxyAuth; |
| | | } |
| | | |
| | | /** |