8157712: Deprecate the javax.security.cert and com.sun.net.ssl APIs with forRemoval=true

Reviewed-by: weijun
This commit is contained in:
Xue-Lei Andrew Fan 2016-07-09 05:48:16 +00:00
parent 465af0b962
commit 67ca9fc9b4
27 changed files with 81 additions and 46 deletions

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -38,8 +38,9 @@ package com.sun.net.ssl;
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.HostnameVerifier} and * replaced by {@link javax.net.ssl.HostnameVerifier} and
* {@link javax.net.ssl.CertificateHostnameVerifier}. * {@link javax.net.ssl.CertificateHostnameVerifier}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public interface HostnameVerifier { public interface HostnameVerifier {
/** /**
* Verify that the hostname from the URL is an acceptable * Verify that the hostname from the URL is an acceptable

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -44,8 +44,9 @@ import javax.net.ssl.SSLPeerUnverifiedException;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.HttpsURLConnection}. * replaced by {@link javax.net.ssl.HttpsURLConnection}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public abstract public abstract
class HttpsURLConnection extends HttpURLConnection class HttpsURLConnection extends HttpURLConnection
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -36,7 +36,8 @@ package com.sun.net.ssl;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.KeyManager}. * replaced by {@link javax.net.ssl.KeyManager}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public interface KeyManager { public interface KeyManager {
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -39,8 +39,9 @@ import java.security.*;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.KeyManagerFactory}. * replaced by {@link javax.net.ssl.KeyManagerFactory}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public class KeyManagerFactory { public class KeyManagerFactory {
// The provider // The provider
private Provider provider; private Provider provider;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -41,8 +41,9 @@ import java.security.*;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.KeyManagerFactorySpi}. * replaced by {@link javax.net.ssl.KeyManagerFactorySpi}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public abstract class KeyManagerFactorySpi { public abstract class KeyManagerFactorySpi {
/** /**
* Initializes this factory with a source of key material. The * Initializes this factory with a source of key material. The

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -44,8 +44,9 @@ import sun.security.ssl.SSLServerSocketFactoryImpl;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.SSLContext}. * replaced by {@link javax.net.ssl.SSLContext}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public class SSLContext { public class SSLContext {
private Provider provider; private Provider provider;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -43,8 +43,9 @@ import javax.net.ssl.*;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.SSLContextSpi}. * replaced by {@link javax.net.ssl.SSLContextSpi}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public abstract class SSLContextSpi { public abstract class SSLContextSpi {
/** /**
* Initializes this context. * Initializes this context.

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -97,8 +97,9 @@ import java.lang.SecurityManager;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.SSLPermission}. * replaced by {@link javax.net.ssl.SSLPermission}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public final class SSLPermission extends BasicPermission { public final class SSLPermission extends BasicPermission {
private static final long serialVersionUID = -2583684302506167542L; private static final long serialVersionUID = -2583684302506167542L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -36,7 +36,8 @@ package com.sun.net.ssl;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.TrustManager}. * replaced by {@link javax.net.ssl.TrustManager}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public interface TrustManager { public interface TrustManager {
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -39,8 +39,9 @@ import java.security.*;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.TrustManagerFactory}. * replaced by {@link javax.net.ssl.TrustManagerFactory}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public class TrustManagerFactory { public class TrustManagerFactory {
// The provider // The provider
private Provider provider; private Provider provider;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -41,8 +41,9 @@ import java.security.*;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.TrustManagerFactorySpi}. * replaced by {@link javax.net.ssl.TrustManagerFactorySpi}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public abstract class TrustManagerFactorySpi { public abstract class TrustManagerFactorySpi {
/** /**
* Initializes this factory with a source of certificate * Initializes this factory with a source of certificate

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -41,8 +41,9 @@ import java.security.cert.X509Certificate;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.X509KeyManager}. * replaced by {@link javax.net.ssl.X509KeyManager}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public interface X509KeyManager extends KeyManager { public interface X509KeyManager extends KeyManager {
/** /**
* Get the matching aliases for authenticating the client side of a secure * Get the matching aliases for authenticating the client side of a secure

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -40,8 +40,9 @@ import java.security.cert.X509Certificate;
* *
* @deprecated As of JDK 1.4, this implementation-specific class was * @deprecated As of JDK 1.4, this implementation-specific class was
* replaced by {@link javax.net.ssl.X509TrustManager}. * replaced by {@link javax.net.ssl.X509TrustManager}.
* This class is subject to removal in a future version of JDK.
*/ */
@Deprecated @Deprecated(since="1.4", forRemoval=true)
public interface X509TrustManager extends TrustManager { public interface X509TrustManager extends TrustManager {
/** /**
* Given the partial or complete certificate chain * Given the partial or complete certificate chain

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -31,7 +31,10 @@ import sun.security.ssl.SunJSSE;
* Main class for the SunJSSE provider. The actual code was moved to the * Main class for the SunJSSE provider. The actual code was moved to the
* class sun.security.ssl.SunJSSE, but for backward compatibility we * class sun.security.ssl.SunJSSE, but for backward compatibility we
* continue to use this class as the main Provider class. * continue to use this class as the main Provider class.
*
* @deprecated This class is subject to removal in a future version of JDK.
*/ */
@Deprecated(since="9", forRemoval=true)
public final class Provider extends SunJSSE { public final class Provider extends SunJSSE {
private static final long serialVersionUID = 3231825739635378733L; private static final long serialVersionUID = 3231825739635378733L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -54,7 +54,9 @@ import java.security.cert.CertificateException;
* *
* @since 1.6 * @since 1.6
* @author Xuelei Fan * @author Xuelei Fan
* @deprecated This class is subject to removal in a future version of JDK.
*/ */
@Deprecated(since="9", forRemoval=true)
public abstract class X509ExtendedTrustManager implements X509TrustManager { public abstract class X509ExtendedTrustManager implements X509TrustManager {
/** /**
* Constructor used by subclasses only. * Constructor used by subclasses only.

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -52,7 +52,9 @@ import sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection;
* of protocol implementation (this one) * of protocol implementation (this one)
* com.sun.net.ssl.HttpURLConnection is used in the com.sun version. * com.sun.net.ssl.HttpURLConnection is used in the com.sun version.
* *
* @deprecated This class is subject to removal in a future version of JDK.
*/ */
@Deprecated(since="9", forRemoval=true)
@SuppressWarnings("deprecation") // HttpsURLConnection is deprecated @SuppressWarnings("deprecation") // HttpsURLConnection is deprecated
public class DelegateHttpsURLConnection extends AbstractDelegateHttpsURLConnection { public class DelegateHttpsURLConnection extends AbstractDelegateHttpsURLConnection {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1996, 2003, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -34,7 +34,9 @@ import java.net.Proxy;
* only. The HTTPS implementation can now be found in * only. The HTTPS implementation can now be found in
* sun.net.www.protocol.https. * sun.net.www.protocol.https.
* *
* @deprecated This class is subject to removal in a future version of JDK.
*/ */
@Deprecated(since="9", forRemoval=true)
public class Handler extends sun.net.www.protocol.https.Handler { public class Handler extends sun.net.www.protocol.https.Handler {
public Handler() { public Handler() {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -59,11 +59,13 @@ import sun.net.www.http.HttpClient;
* needs to implement all public methods in it's super class and all * needs to implement all public methods in it's super class and all
* the way to Object. * the way to Object.
* *
* @deprecated This class is subject to removal in a future version of JDK.
*/ */
// For both copies of the file, uncomment one line and comment the other // For both copies of the file, uncomment one line and comment the other
// public class HttpsURLConnectionImpl // public class HttpsURLConnectionImpl
// extends javax.net.ssl.HttpsURLConnection { // extends javax.net.ssl.HttpsURLConnection {
@Deprecated(since="9", forRemoval=true)
@SuppressWarnings("deprecation") // HttpsURLConnection is deprecated @SuppressWarnings("deprecation") // HttpsURLConnection is deprecated
public class HttpsURLConnectionOldImpl public class HttpsURLConnectionOldImpl
extends com.sun.net.ssl.HttpsURLConnection { extends com.sun.net.ssl.HttpsURLConnection {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -58,10 +58,11 @@ import java.security.SignatureException;
* @since 1.4 * @since 1.4
* @see X509Certificate * @see X509Certificate
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
* *
* @author Hemma Prafullchandra * @author Hemma Prafullchandra
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public abstract class Certificate { public abstract class Certificate {
/** /**

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -39,8 +39,9 @@ package javax.security.cert;
* @since 1.4 * @since 1.4
* @author Hemma Prafullchandra * @author Hemma Prafullchandra
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public class CertificateEncodingException extends CertificateException { public class CertificateEncodingException extends CertificateException {
private static final long serialVersionUID = -8187642723048403470L; private static final long serialVersionUID = -8187642723048403470L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -39,8 +39,9 @@ package javax.security.cert;
* @since 1.4 * @since 1.4
* @see Certificate * @see Certificate
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public class CertificateException extends Exception { public class CertificateException extends Exception {
private static final long serialVersionUID = -5757213374030785290L; private static final long serialVersionUID = -5757213374030785290L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -41,8 +41,9 @@ package javax.security.cert;
* @since 1.4 * @since 1.4
* @author Hemma Prafullchandra * @author Hemma Prafullchandra
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public class CertificateExpiredException extends CertificateException { public class CertificateExpiredException extends CertificateException {
private static final long serialVersionUID = 5091601212177261883L; private static final long serialVersionUID = 5091601212177261883L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -41,8 +41,9 @@ package javax.security.cert;
* @since 1.4 * @since 1.4
* @author Hemma Prafullchandra * @author Hemma Prafullchandra
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public class CertificateNotYetValidException extends CertificateException { public class CertificateNotYetValidException extends CertificateException {
private static final long serialVersionUID = -8976172474266822818L; private static final long serialVersionUID = -8976172474266822818L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -40,8 +40,9 @@ package javax.security.cert;
* @since 1.4 * @since 1.4
* @author Hemma Prafullchandra * @author Hemma Prafullchandra
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public class CertificateParsingException extends CertificateException { public class CertificateParsingException extends CertificateException {
private static final long serialVersionUID = -8449352422951136229L; private static final long serialVersionUID = -8449352422951136229L;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -125,8 +125,9 @@ import java.util.Date;
* @see java.security.cert.X509Extension * @see java.security.cert.X509Extension
* @see java.security.Security security properties * @see java.security.Security security properties
* @deprecated Use the classes in {@code java.security.cert} instead. * @deprecated Use the classes in {@code java.security.cert} instead.
* This class is subject to removal in a future version of Java SE.
*/ */
@Deprecated @Deprecated(since="9", forRemoval=true)
public abstract class X509Certificate extends Certificate { public abstract class X509Certificate extends Certificate {
/* /*

View file

@ -159,6 +159,8 @@ final class ProviderConfig {
/** /**
* Get the provider object. Loads the provider if it is not already loaded. * Get the provider object. Loads the provider if it is not already loaded.
*/ */
// com.sun.net.ssl.internal.ssl.Provider has been deprecated since JDK 9
@SuppressWarnings("deprecation")
synchronized Provider getProvider() { synchronized Provider getProvider() {
// volatile variable load // volatile variable load
Provider p = provider; Provider p = provider;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -237,6 +237,8 @@ public abstract class SunJSSE extends java.security.Provider {
"sun.security.pkcs12.PKCS12KeyStore"); "sun.security.pkcs12.PKCS12KeyStore");
} }
// com.sun.net.ssl.internal.ssl.Provider has been deprecated since JDK 9
@SuppressWarnings("deprecation")
private void subclassCheck() { private void subclassCheck() {
if (getClass() != com.sun.net.ssl.internal.ssl.Provider.class) { if (getClass() != com.sun.net.ssl.internal.ssl.Provider.class) {
throw new AssertionError("Illegal subclass: " + getClass()); throw new AssertionError("Illegal subclass: " + getClass());