|
1 | 1 | /*
|
2 |
| - * Copyright (c) 1995, 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1995, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -335,13 +335,6 @@ private static Set<String> schemesListToSet(String list) {
|
335 | 335 | private String userCookies = null;
|
336 | 336 | private String userCookies2 = null;
|
337 | 337 |
|
338 |
| - /* We only have a single static authenticator for now. |
339 |
| - * REMIND: backwards compatibility with JDK 1.1. Should be |
340 |
| - * eliminated for JDK 2.0. |
341 |
| - */ |
342 |
| - @Deprecated |
343 |
| - private static HttpAuthenticator defaultAuth; |
344 |
| - |
345 | 338 | /* all the headers we send
|
346 | 339 | * NOTE: do *NOT* dump out the content of 'requests' in the
|
347 | 340 | * output or stacktrace since it may contain security-sensitive
|
@@ -945,14 +938,6 @@ public ResponseCache run() {
|
945 | 938 | });
|
946 | 939 | }
|
947 | 940 |
|
948 |
| - /** |
949 |
| - * @deprecated. Use java.net.Authenticator.setDefault() instead. |
950 |
| - */ |
951 |
| - @Deprecated |
952 |
| - public static void setDefaultAuthenticator(HttpAuthenticator a) { |
953 |
| - defaultAuth = a; |
954 |
| - } |
955 |
| - |
956 | 941 | /**
|
957 | 942 | * opens a stream allowing redirects only to the same host.
|
958 | 943 | */
|
@@ -2524,22 +2509,6 @@ public InetAddress run()
|
2524 | 2509 | throw new AssertionError("should not reach here");
|
2525 | 2510 | }
|
2526 | 2511 | }
|
2527 |
| - // For backwards compatibility, we also try defaultAuth |
2528 |
| - // REMIND: Get rid of this for JDK2.0. |
2529 |
| - |
2530 |
| - if (ret == null && defaultAuth != null |
2531 |
| - && defaultAuth.schemeSupported(scheme)) { |
2532 |
| - try { |
2533 |
| - @SuppressWarnings("deprecation") |
2534 |
| - URL u = new URL("http", host, port, "/"); |
2535 |
| - String a = defaultAuth.authString(u, scheme, realm); |
2536 |
| - if (a != null) { |
2537 |
| - ret = new BasicAuthentication (true, host, port, realm, a); |
2538 |
| - // not in cache by default - cache on success |
2539 |
| - } |
2540 |
| - } catch (java.net.MalformedURLException ignored) { |
2541 |
| - } |
2542 |
| - } |
2543 | 2512 | if (ret != null) {
|
2544 | 2513 | if (!ret.setHeaders(this, p, raw)) {
|
2545 | 2514 | ret.disposeContext();
|
@@ -2697,19 +2666,6 @@ private AuthenticationInfo getServerAuthentication(AuthenticationHeader authhdr)
|
2697 | 2666 | throw new AssertionError("should not reach here");
|
2698 | 2667 | }
|
2699 | 2668 | }
|
2700 |
| - |
2701 |
| - // For backwards compatibility, we also try defaultAuth |
2702 |
| - // REMIND: Get rid of this for JDK2.0. |
2703 |
| - |
2704 |
| - if (ret == null && defaultAuth != null |
2705 |
| - && defaultAuth.schemeSupported(scheme)) { |
2706 |
| - String a = defaultAuth.authString(url, scheme, realm); |
2707 |
| - if (a != null) { |
2708 |
| - ret = new BasicAuthentication (false, url, realm, a); |
2709 |
| - // not in cache by default - cache on success |
2710 |
| - } |
2711 |
| - } |
2712 |
| - |
2713 | 2669 | if (ret != null ) {
|
2714 | 2670 | if (!ret.setHeaders(this, p, raw)) {
|
2715 | 2671 | ret.disposeContext();
|
|
0 commit comments