1 package com.atlassian.sal.core.net;
2
3 public interface ProxyConfig
4 {
5 boolean isSet();
6 boolean requiresAuthentication();
7 String getHost();
8 int getPort();
9 String getUser();
10 String getPassword();
11 String[] getNonProxyHosts();
12
13 }