All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.ssl.SSLSocketWrapper Maven / Gradle / Ivy

The newest version!
/*
 * $HeadURL: file:///opt/dev/not-yet-commons-ssl-SVN-repo/tags/commons-ssl-0.3.17/src/java/org/apache/commons/ssl/SSLSocketWrapper.java $
 * $Revision: 187 $
 * $Date: 2015-03-16 14:27:25 -0700 (Mon, 16 Mar 2015) $
 *
 * ====================================================================
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * .
 *
 */

package org.apache.commons.ssl;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.Socket;
import java.net.SocketAddress;
import java.net.SocketException;
import java.nio.channels.SocketChannel;

import javax.net.ssl.HandshakeCompletedListener;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLSocket;

/**
 * @author Credit Union Central of British Columbia
 * @author www.cucbc.com
 * @author [email protected]
 * @since 16-Aug-2006
 */
public class SSLSocketWrapper extends SSLSocket {
    protected Socket s;

    public SSLSocketWrapper(Socket s) {
        this.s = s;
    }

    /* javax.net.ssl.SSLSocket */

    public void addHandshakeCompletedListener(HandshakeCompletedListener hcl) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).addHandshakeCompletedListener(hcl);
        }
    }

    public void removeHandshakeCompletedListener(HandshakeCompletedListener hcl) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).removeHandshakeCompletedListener(hcl);
        }
    }

    public String[] getSupportedCipherSuites() {
        if (s instanceof SSLSocket) {
            return ((SSLSocket) s).getSupportedCipherSuites();
        } else {
            return null;
        }
    }

    public boolean getEnableSessionCreation() {
        return s instanceof SSLSocket && ((SSLSocket) s).getEnableSessionCreation();
    }

    public String[] getEnabledCipherSuites() {
        if (s instanceof SSLSocket) {
            return ((SSLSocket) s).getEnabledCipherSuites();
        } else {
            return null;
        }
    }

    public String[] getSupportedProtocols() {
        if (s instanceof SSLSocket) {
            return ((SSLSocket) s).getSupportedProtocols();
        } else {
            return null;
        }
    }

    public String[] getEnabledProtocols() {
        if (s instanceof SSLSocket) {
            return ((SSLSocket) s).getEnabledProtocols();
        } else {
            return null;
        }
    }

    public SSLSession getSession() {
        if (s instanceof SSLSocket) {
            return ((SSLSocket) s).getSession();
        } else {
            return null;
        }
    }

    public boolean getUseClientMode() {
        return s instanceof SSLSocket && ((SSLSocket) s).getUseClientMode();
    }

    public boolean getNeedClientAuth() {
        return s instanceof SSLSocket && ((SSLSocket) s).getNeedClientAuth();
    }

    public boolean getWantClientAuth() {
        return s instanceof SSLSocket && ((SSLSocket) s).getWantClientAuth();
    }

    public void setEnabledCipherSuites(String[] cs) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setEnabledCipherSuites(cs);
        }
    }

    public void setEnabledProtocols(String[] ep) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setEnabledProtocols(ep);
        }
    }

    public void startHandshake() throws IOException {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).startHandshake();
        }
    }

    public void setUseClientMode(boolean b) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setUseClientMode(b);
        }
    }

    public void setNeedClientAuth(boolean b) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setNeedClientAuth(b);
        }
    }

    public void setWantClientAuth(boolean b) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setWantClientAuth(b);
        }
    }

    public void setEnableSessionCreation(boolean b) {
        if (s instanceof SSLSocket) {
            ((SSLSocket) s).setEnableSessionCreation(b);
        }
    }

    /* java.net.Socket */

    public SocketChannel getChannel() {
        return s.getChannel();
    }

    public InetAddress getInetAddress() {
        return s.getInetAddress();
    }

    public boolean getKeepAlive() throws SocketException {
        return s.getKeepAlive();
    }

    public InetAddress getLocalAddress() {
        return s.getLocalAddress();
    }

    public int getLocalPort() {
        return s.getLocalPort();
    }

    public SocketAddress getLocalSocketAddress() {
        return s.getLocalSocketAddress();
    }

    public boolean getOOBInline() throws SocketException {
        return s.getOOBInline();
    }

    public int getPort() {
        return s.getPort();
    }

    public int getReceiveBufferSize() throws SocketException {
        return s.getReceiveBufferSize();
    }

    public SocketAddress getRemoteSocketAddress() {
        return s.getRemoteSocketAddress();
    }

    public boolean getReuseAddress() throws SocketException {
        return s.getReuseAddress();
    }

    public int getSendBufferSize() throws SocketException {
        return s.getSendBufferSize();
    }

    public int getSoLinger() throws SocketException {
        return s.getSoLinger();
    }

    public int getSoTimeout() throws SocketException {
        return s.getSoTimeout();
    }

    public boolean getTcpNoDelay() throws SocketException {
        return s.getTcpNoDelay();
    }

    public int getTrafficClass() throws SocketException {
        return s.getTrafficClass();
    }

    public boolean isBound() {
        return s.isBound();
    }

    public boolean isClosed() {
        return s.isClosed();
    }

    public boolean isConnected() {
        return s.isConnected();
    }

    public boolean isInputShutdown() {
        return s.isInputShutdown();
    }

    public boolean isOutputShutdown() {
        return s.isOutputShutdown();
    }

    public void sendUrgentData(int data) throws IOException {
        s.sendUrgentData(data);
    }

    public void setKeepAlive(boolean on) throws SocketException {
        s.setKeepAlive(on);
    }

    public void setOOBInline(boolean on) throws SocketException {
        s.setOOBInline(on);
    }

    public void setReceiveBufferSize(int size) throws SocketException {
        s.setReceiveBufferSize(size);
    }

    public void setReuseAddress(boolean on) throws SocketException {
        s.setReuseAddress(on);
    }

    public void setSendBufferSize(int size) throws SocketException {
        s.setSendBufferSize(size);
    }

    public void setSoLinger(boolean on, int l) throws SocketException {
        s.setSoLinger(on, l);
    }

    public void setSoTimeout(int timeout) throws SocketException {
        s.setSoTimeout(timeout);
    }

    public void setTcpNoDelay(boolean on) throws SocketException {
        s.setTcpNoDelay(on);
    }

    public void setTrafficClass(int tc) throws SocketException {
        s.setTrafficClass(tc);
    }

    public void shutdownInput() throws IOException {
        s.shutdownInput();
    }

    public void shutdownOutput() throws IOException {
        s.shutdownOutput();
    }

    public String toString() {
        return s.toString();
    }

    public void setPerformancePreferences(int connectionTime, int latency, int bandwidth) {
        s.setPerformancePreferences( connectionTime, latency, bandwidth );
    }

    public void bind(SocketAddress bindpoint) throws IOException {
        s.bind(bindpoint);
    }

    public void close() throws IOException {
        s.close();
    }

    public void connect(SocketAddress endpoint) throws IOException {
        s.connect(endpoint);
    }

    public void connect(SocketAddress endpoint, int timeout) throws IOException {
        s.connect(endpoint, timeout);
    }

    public InputStream getInputStream() throws IOException {
        return s.getInputStream();
    }

    public OutputStream getOutputStream() throws IOException {
        return s.getOutputStream();
    }

    public void setHost(String host) throws IOException {
        if (s instanceof SSLSocket) {
            Java14.setHostForSNI((SSLSocket)s, host);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy