Ice.WSConnectionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Connection.ice'
//
// Warning: do not edit this file.
//
//
//
package 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();
}
public static final long serialVersionUID = 9085761366886580254L;
}