View Javadoc

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