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

com.zeroc.Ice.WSConnectionInfo Maven / Gradle / Ivy

//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.2
//
// 
//
// Generated from file `Connection.ice'
//
// Warning: do not edit this file.
//
// 
//

package com.zeroc.Ice;

/**
 * Provides access to the connection details of a WebSocket connection
 **/
public class WSConnectionInfo extends ConnectionInfo
{
    public WSConnectionInfo()
    {
        super();
    }

    public WSConnectionInfo(ConnectionInfo underlying, boolean incoming, String adapterName, String connectionId, java.util.Map headers)
    {
        super(underlying, incoming, adapterName, connectionId);
        this.headers = headers;
    }

    /**
     * The headers from the HTTP upgrade request.
     **/
    public java.util.Map headers;

    public WSConnectionInfo clone()
    {
        return (WSConnectionInfo)super.clone();
    }

    /** @hidden */
    public static final long serialVersionUID = 9085761366886580254L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy