< prev index next >

test/java/net/ProxySelector/SystemProxies.java

Print this page
rev 16207 : 8170868: DefaultProxySelector should use system defaults on Windows, MacOS and Gnome
Contributed-by: arno.zeller@sap.com

*** 1,7 **** /* ! * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,32 **** * or visit www.oracle.com if you need additional information or have any * questions. */ /* ! * This is a manual test to determine the proxies set on the system for various ! * protocols. See bug 6912868. */ import java.net.Proxy; import java.net.ProxySelector; import java.net.URI; import java.net.URISyntaxException; import java.util.List; --- 20,36 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ /* ! * @test ! * @bug 6912868 8170868 ! * @summary Basic test to provide some coverage of system proxy code. Will ! * always pass. Should be run manually for specific systems to inspect output. ! * @run main/othervm -Djava.net.useSystemProxies=true SystemProxies */ + import java.net.Proxy; import java.net.ProxySelector; import java.net.URI; import java.net.URISyntaxException; import java.util.List;
< prev index next >