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

Packages that use InboundRequestHandle
com.sun.jini.discovery.internal   
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 InboundRequestHandle in com.sun.jini.discovery.internal
 

Methods in com.sun.jini.discovery.internal with parameters of type InboundRequestHandle
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.
 

Uses of InboundRequestHandle in net.jini.jeri.connection
 

Fields in net.jini.jeri.connection declared as InboundRequestHandle
private  InboundRequestHandle ServerConnectionManager.Inbound.handle
          The inbound request handle.
 

Methods in net.jini.jeri.connection that return InboundRequestHandle
 InboundRequestHandle ServerConnection.processRequestData(InputStream in, OutputStream out)
          Reads from the specified input stream any per-request data required by this connection for an inbound request, writes any required response data to the specified output stream, and returns a handle for the request.
 

Methods in net.jini.jeri.connection with parameters of type InboundRequestHandle
 InvocationConstraints ServerConnection.checkConstraints(InboundRequestHandle handle, InvocationConstraints constraints)
          Implements InboundRequest.checkConstraints for a request with the specified handle.
 void ServerConnection.checkPermissions(InboundRequestHandle handle)
          Implements InboundRequest.checkPermissions for a request with the specified handle.
 void ServerConnection.populateContext(InboundRequestHandle handle, Collection context)
          Populates the supplied collection with context information representing a request with the specified handle.
 

Constructors in net.jini.jeri.connection with parameters of type InboundRequestHandle
ServerConnectionManager.Inbound(InboundRequest req, ServerConnection c, InboundRequestHandle handle)
           
 

Uses of InboundRequestHandle in net.jini.jeri.kerberos
 

Classes in net.jini.jeri.kerberos that implement InboundRequestHandle
private  class KerberosServerEndpoint.ServerConnectionImpl.InboundRequestHandleImpl
           
 

Methods in net.jini.jeri.kerberos that return InboundRequestHandle
 InboundRequestHandle KerberosServerEndpoint.ServerConnectionImpl.processRequestData(InputStream in, OutputStream out)
           
 

Methods in net.jini.jeri.kerberos with parameters of type InboundRequestHandle
 InvocationConstraints KerberosServerEndpoint.ServerConnectionImpl.checkConstraints(InboundRequestHandle handle, InvocationConstraints constraints)
           
 void KerberosServerEndpoint.ServerConnectionImpl.checkPermissions(InboundRequestHandle handle)
           
 void KerberosServerEndpoint.ServerConnectionImpl.populateContext(InboundRequestHandle handle, Collection context)
           
 

Uses of InboundRequestHandle in net.jini.jeri.ssl
 

Fields in net.jini.jeri.ssl declared as InboundRequestHandle
private  InboundRequestHandle HttpsServerEndpoint.HttpsServerEndpointImpl.HttpsInboundRequest.handle
           
private  InboundRequestHandle SslServerEndpointImpl.SslServerConnection.requestHandle
          The inbound request handle for this connection.
 

Methods in net.jini.jeri.ssl that return InboundRequestHandle
 InboundRequestHandle SslServerEndpointImpl.SslServerConnection.processRequestData(InputStream in, OutputStream out)
           
 

Methods in net.jini.jeri.ssl with parameters of type InboundRequestHandle
private  void SslServerEndpointImpl.SslServerConnection.check(InboundRequestHandle requestHandle)
          Checks that the argument is the request handle for this connection.
 InvocationConstraints SslServerEndpointImpl.SslServerConnection.checkConstraints(InboundRequestHandle requestHandle, InvocationConstraints constraints)
           
 void SslServerEndpointImpl.SslServerConnection.checkPermissions(InboundRequestHandle requestHandle)
           
 void SslServerEndpointImpl.SslServerConnection.populateContext(InboundRequestHandle requestHandle, Collection context)
           
 

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

Uses of InboundRequestHandle in net.jini.jeri.tcp
 

Methods in net.jini.jeri.tcp that return InboundRequestHandle
 InboundRequestHandle TcpServerEndpoint.LH.ServerConnectionImpl.processRequestData(InputStream in, OutputStream out)
           
 

Methods in net.jini.jeri.tcp with parameters of type InboundRequestHandle
 InvocationConstraints TcpServerEndpoint.LH.ServerConnectionImpl.checkConstraints(InboundRequestHandle handle, InvocationConstraints constraints)
           
 void TcpServerEndpoint.LH.ServerConnectionImpl.checkPermissions(InboundRequestHandle handle)
           
 void TcpServerEndpoint.LH.ServerConnectionImpl.populateContext(InboundRequestHandle handle, Collection context)
           
 



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