Uses of Interface
net.jini.jeri.connection.ServerConnection

Packages that use ServerConnection
com.sun.jini.discovery.internal   
com.sun.jini.jeri.internal.connection   
net.jini.jeri.connection Provides interfaces and classes for implementing connection-based Jini extensible remote invocation (Jini ERI) transport layer providers. 
net.jini.jeri.kerberos Provides implementations of Endpoint and ServerEndpoint that use Kerberos as the underlying network security protocol to support security related invocation constraints for remote requests. 
net.jini.jeri.ssl Provides implementations of Endpoint and ServerEndpoint that use TLS/SSL and HTTPS (HTTP over TLS/SSL) to support invocation constraints. 
net.jini.jeri.tcp Provides implementations of the Endpoint and ServerEndpoint abstractions that use TCP sockets as the underlying communication mechanism. 
 

Uses of ServerConnection in com.sun.jini.discovery.internal
 

Fields in com.sun.jini.discovery.internal declared as ServerConnection
private  ServerConnection EndpointBasedServer.ServerConnManagerImpl.conn
           
 

Methods in com.sun.jini.discovery.internal that return ServerConnection
(package private)  ServerConnection EndpointBasedServer.ServerConnManagerImpl.getServerConnection()
           
 

Methods in com.sun.jini.discovery.internal with parameters of type ServerConnection
private static Subject EndpointBasedServer.getClientSubject(ServerConnection connection, InboundRequestHandle handle)
          Returns the subject that the client of the given connection has authenticated as, or null if the client is not authenticated.
 void EndpointBasedServer.ServerConnManagerImpl.handleConnection(ServerConnection conn, RequestDispatcher disp)
           
 

Uses of ServerConnection in com.sun.jini.jeri.internal.connection
 

Methods in com.sun.jini.jeri.internal.connection with parameters of type ServerConnection
 void BasicServerConnManager.handleConnection(ServerConnection conn, RequestDispatcher dispatcher)
          Delegates to the handleConnection method of the contained ServerConnectionManager.
 void ServerConnManager.handleConnection(ServerConnection conn, RequestDispatcher dispatcher)
          Enqueues a newly accepted server-side connection for asynchronous processing of inbound requests using the specified request dispatcher, and then returns immediately.
 

Uses of ServerConnection in net.jini.jeri.connection
 

Fields in net.jini.jeri.connection declared as ServerConnection
private  ServerConnection ServerConnectionManager.Dispatcher.c
          The connection passed to handleConnection.
private  ServerConnection ServerConnectionManager.Inbound.c
          The connection on which the inbound request originates.
private  ServerConnection ServerConnectionManager.InboundMux.c
          The inbound connection.
 

Methods in net.jini.jeri.connection with parameters of type ServerConnection
(package private) static void ServerConnectionManager.InboundMux.create(ServerConnection c, RequestDispatcher dispatcher)
          Constructs an instance from the connection.
 void ServerConnectionManager.handleConnection(ServerConnection conn, RequestDispatcher dispatcher)
          Starts handling requests received on the specified newly accepted connection, dispatching them to the specified request dispatcher asynchronously, and returns immediately.
 

Constructors in net.jini.jeri.connection with parameters of type ServerConnection
ServerConnectionManager.Dispatcher(RequestDispatcher dispatcher, ServerConnection c)
           
ServerConnectionManager.Inbound(InboundRequest req, ServerConnection c, InboundRequestHandle handle)
           
ServerConnectionManager.InboundMux(ServerConnection c, RequestDispatcher dispatcher)
          Constructs an instance from the connection's streams.
ServerConnectionManager.InboundMux(ServerConnection c, RequestDispatcher dispatcher, boolean ignore)
          Constructs an instance from the connection's channel.
 

Uses of ServerConnection in net.jini.jeri.kerberos
 

Classes in net.jini.jeri.kerberos that implement ServerConnection
private  class KerberosServerEndpoint.ServerConnectionImpl
          Implementation class of the server side connection abstraction
 

Uses of ServerConnection in net.jini.jeri.ssl
 

Classes in net.jini.jeri.ssl that implement ServerConnection
private  class HttpsServerEndpoint.HttpsServerEndpointImpl.HttpsServerConnection
          Implements ServerConnection.
(package private)  class SslServerEndpointImpl.SslServerConnection
          Implements ServerConnection
 

Fields in net.jini.jeri.ssl declared as ServerConnection
private  ServerConnection HttpsServerEndpoint.HttpsServerEndpointImpl.HttpsInboundRequest.connection
           
 

Constructors in net.jini.jeri.ssl with parameters of type ServerConnection
HttpsServerEndpoint.HttpsServerEndpointImpl.HttpsInboundRequest(InboundRequest request, ServerConnection connection, InboundRequestHandle handle)
           
 

Uses of ServerConnection in net.jini.jeri.tcp
 

Classes in net.jini.jeri.tcp that implement ServerConnection
private  class TcpServerEndpoint.LH.ServerConnectionImpl
          ServerConnection implementation.
 



Copyright 2007-2010, multiple authors.
Licensed under the Apache License, Version 2.0, see the NOTICE file for attributions.