jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/HttpsExchangeImpl.java
changeset 25859 3317bb8137f4
parent 5506 202f599c92aa
child 29109 f37e7cc91bac
equal deleted inserted replaced
25858:836adbf7a2cd 25859:3317bb8137f4
       
     1 /*
       
     2  * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 
       
    26 package sun.net.httpserver;
       
    27 
       
    28 import java.io.*;
       
    29 import java.nio.*;
       
    30 import java.nio.channels.*;
       
    31 import java.net.*;
       
    32 import javax.net.ssl.*;
       
    33 import java.util.*;
       
    34 import sun.net.www.MessageHeader;
       
    35 import com.sun.net.httpserver.*;
       
    36 import com.sun.net.httpserver.spi.*;
       
    37 
       
    38 class HttpsExchangeImpl extends HttpsExchange {
       
    39 
       
    40     ExchangeImpl impl;
       
    41 
       
    42     HttpsExchangeImpl (ExchangeImpl impl) throws IOException {
       
    43         this.impl = impl;
       
    44     }
       
    45 
       
    46     public Headers getRequestHeaders () {
       
    47         return impl.getRequestHeaders();
       
    48     }
       
    49 
       
    50     public Headers getResponseHeaders () {
       
    51         return impl.getResponseHeaders();
       
    52     }
       
    53 
       
    54     public URI getRequestURI () {
       
    55         return impl.getRequestURI();
       
    56     }
       
    57 
       
    58     public String getRequestMethod (){
       
    59         return impl.getRequestMethod();
       
    60     }
       
    61 
       
    62     public HttpContextImpl getHttpContext (){
       
    63         return impl.getHttpContext();
       
    64     }
       
    65 
       
    66     public void close () {
       
    67         impl.close();
       
    68     }
       
    69 
       
    70     public InputStream getRequestBody () {
       
    71         return impl.getRequestBody();
       
    72     }
       
    73 
       
    74     public int getResponseCode () {
       
    75         return impl.getResponseCode();
       
    76     }
       
    77 
       
    78     public OutputStream getResponseBody () {
       
    79         return impl.getResponseBody();
       
    80     }
       
    81 
       
    82 
       
    83     public void sendResponseHeaders (int rCode, long contentLen)
       
    84     throws IOException
       
    85     {
       
    86         impl.sendResponseHeaders (rCode, contentLen);
       
    87     }
       
    88 
       
    89     public InetSocketAddress getRemoteAddress (){
       
    90         return impl.getRemoteAddress();
       
    91     }
       
    92 
       
    93     public InetSocketAddress getLocalAddress (){
       
    94         return impl.getLocalAddress();
       
    95     }
       
    96 
       
    97     public String getProtocol (){
       
    98         return impl.getProtocol();
       
    99     }
       
   100 
       
   101     public SSLSession getSSLSession () {
       
   102         return impl.getSSLSession ();
       
   103     }
       
   104 
       
   105     public Object getAttribute (String name) {
       
   106         return impl.getAttribute (name);
       
   107     }
       
   108 
       
   109     public void setAttribute (String name, Object value) {
       
   110         impl.setAttribute (name, value);
       
   111     }
       
   112 
       
   113     public void setStreams (InputStream i, OutputStream o) {
       
   114         impl.setStreams (i, o);
       
   115     }
       
   116 
       
   117     public HttpPrincipal getPrincipal () {
       
   118         return impl.getPrincipal();
       
   119     }
       
   120 
       
   121     ExchangeImpl getExchangeImpl () {
       
   122         return impl;
       
   123     }
       
   124 }