jdk/src/share/classes/java/net/SecureCacheResponse.java
author michaelm
Thu, 16 Sep 2010 08:08:06 -0700
changeset 6875 81d6ec3397e5
parent 5506 202f599c92aa
permissions -rw-r--r--
6981426: limit use of TRACE method in HttpURLConnection Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2003, 2004, 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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.net.ssl.SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * Represents a cache response originally retrieved through secure
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * means, such as TLS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public abstract class SecureCacheResponse extends CacheResponse {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
     * Returns the cipher suite in use on the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
     * retrieved the network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     * @return a string representing the cipher suite
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    public abstract String getCipherSuite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * Returns the certificate chain that were sent to the server during
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * handshaking of the original connection that retrieved the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * network resource.  Note: This method is useful only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * when using certificate-based cipher suites.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * @return an immutable List of Certificate representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     *           certificate chain that was sent to the server. If no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     *           certificate chain was sent, null will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * @see #getLocalPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    public abstract List<Certificate> getLocalCertificateChain();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * Returns the server's certificate chain, which was established as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * part of defining the session in the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * retrieved the network resource, from cache.  Note: This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * can be used only when using certificate-based cipher suites;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * using it with non-certificate-based cipher suites, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * Kerberos, will throw an SSLPeerUnverifiedException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * @return an immutable List of Certificate representing the server's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *         certificate chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @throws SSLPeerUnverifiedException if the peer is not verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * @see #getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public abstract List<Certificate> getServerCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        throws SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Returns the server's principal which was established as part of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * defining the session during the original connection that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * retrieved the network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @return the server's principal. Returns an X500Principal of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * end-entity certiticate for X509-based cipher suites, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * KerberosPrincipal for Kerberos cipher suites.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @throws SSLPeerUnverifiedException if the peer was not verified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @see #getServerCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @see #getLocalPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     public abstract Principal getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
             throws SSLPeerUnverifiedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
      * Returns the principal that was sent to the server during
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
      * handshaking in the original connection that retrieved the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
      * network resource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
      * @return the principal sent to the server. Returns an X500Principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
      * of the end-entity certificate for X509-based cipher suites, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
      * KerberosPrincipal for Kerberos cipher suites. If no principal was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
      * sent, then null is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
      * @see #getLocalCertificateChain()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
      * @see #getPeerPrincipal()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     public abstract Principal getLocalPrincipal();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
}