src/java.base/share/classes/java/net/SecureCacheResponse.java
author prappo
Tue, 13 Nov 2018 12:24:34 +0000
changeset 52499 768b1c612100
parent 52474 13266dac5fdb
permissions -rw-r--r--
8213490: Networking area typos and inconsistencies cleanup Reviewed-by: alanb, chegar, dfuchs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
52474
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
     2
 * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.cert.Certificate;
52474
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
    29
import javax.net.ssl.SSLSession;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.net.ssl.SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.List;
52474
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
    33
import java.util.Optional;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Represents a cache response originally retrieved through secure
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * means, such as TLS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
public abstract class SecureCacheResponse extends CacheResponse {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
     * Returns the cipher suite in use on the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     * retrieved the network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * @return a string representing the cipher suite
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    public abstract String getCipherSuite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * Returns the certificate chain that were sent to the server during
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * handshaking of the original connection that retrieved the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * network resource.  Note: This method is useful only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * when using certificate-based cipher suites.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * @return an immutable List of Certificate representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     *           certificate chain that was sent to the server. If no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     *           certificate chain was sent, null will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * @see #getLocalPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    public abstract List<Certificate> getLocalCertificateChain();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Returns the server's certificate chain, which was established as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * part of defining the session in the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * retrieved the network resource, from cache.  Note: This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * can be used only when using certificate-based cipher suites;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * using it with non-certificate-based cipher suites, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * Kerberos, will throw an SSLPeerUnverifiedException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @return an immutable List of Certificate representing the server's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     *         certificate chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * @throws SSLPeerUnverifiedException if the peer is not verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * @see #getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    public abstract List<Certificate> getServerCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        throws SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * Returns the server's principal which was established as part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * defining the session during the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * retrieved the network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @return the server's principal. Returns an X500Principal of the
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52474
diff changeset
    85
     * end-entity certificate for X509-based cipher suites, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * KerberosPrincipal for Kerberos cipher suites.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @throws SSLPeerUnverifiedException if the peer was not verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * @see #getServerCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @see #getLocalPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     public abstract Principal getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
             throws SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
      * Returns the principal that was sent to the server during
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
      * handshaking in the original connection that retrieved the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
      * network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
      * @return the principal sent to the server. Returns an X500Principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
      * of the end-entity certificate for X509-based cipher suites, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
      * KerberosPrincipal for Kerberos cipher suites. If no principal was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
      * sent, then null is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
      * @see #getLocalCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
      * @see #getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     public abstract Principal getLocalPrincipal();
52474
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   110
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   111
    /**
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   112
     * Returns an {@link Optional} containing the {@code SSLSession} in
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   113
     * use on the original connection that retrieved the network resource.
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   114
     * Returns an empty {@code Optional} if the underlying implementation
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   115
     * does not support this method.
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   116
     *
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   117
     * @implSpec For compatibility, the default implementation of this
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   118
     *           method returns an empty {@code Optional}.  Subclasses
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   119
     *           should override this method with an appropriate
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   120
     *           implementation since an application may need to access
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   121
     *           additional parameters associated with the SSL session.
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   122
     *
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   123
     * @return   an {@link Optional} containing the {@code SSLSession} in
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   124
     *           use on the original connection
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   125
     *
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   126
     * @see SSLSession
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   127
     *
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   128
     * @since 12
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   129
     */
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   130
    public Optional<SSLSession> getSSLSession() {
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   131
        return Optional.empty();
13266dac5fdb 8212261: Add SSLSession accessors to HttpsURLConnection and SecureCacheResponse
xuelei
parents: 47216
diff changeset
   132
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
}