Uses of Interface
net.jini.jeri.ServerEndpoint

Packages that use ServerEndpoint
com.sun.jini.discovery.internal   
com.sun.jini.discovery.kerberos Provides an implementation of the net.jini.discovery.kerberos discovery format, specified in the Jini Discovery and Join Specification
com.sun.jini.discovery.ssl Provides an implementation of the net.jini.discovery.ssl discovery format, specified in the Jini Discovery and Join Specification
com.sun.jini.jeri.internal.runtime   
net.jini.jeri Provides the fundamental abstractions and standard implementation classes for Jini extensible remote invocation (Jini ERI). 
net.jini.jeri.http Provides implementations of the Endpoint and ServerEndpoint abstractions that use HTTP messages sent over TCP sockets as the underlying communication mechanism. 
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 ServerEndpoint in com.sun.jini.discovery.internal
 

Methods in com.sun.jini.discovery.internal that return ServerEndpoint
protected abstract  ServerEndpoint EndpointBasedServer.getServerEndpoint(ServerSocketFactory factory)
          Returns a server endpoint which uses the given server socket factory, if non-null.
 

Methods in com.sun.jini.discovery.internal with parameters of type ServerEndpoint
 void EndpointInternals.setServerConnManager(ServerEndpoint endpoint, ServerConnManager manager)
          Sets the ServerConnManager used by the given endpoint to manage accepted connections.
 

Uses of ServerEndpoint in com.sun.jini.discovery.kerberos
 

Methods in com.sun.jini.discovery.kerberos that return ServerEndpoint
protected  ServerEndpoint Server.ServerImpl.getServerEndpoint(ServerSocketFactory factory)
           
 

Uses of ServerEndpoint in com.sun.jini.discovery.ssl
 

Methods in com.sun.jini.discovery.ssl that return ServerEndpoint
protected  ServerEndpoint Server.ServerImpl.getServerEndpoint(ServerSocketFactory factory)
           
 

Uses of ServerEndpoint in com.sun.jini.jeri.internal.runtime
 

Methods in com.sun.jini.jeri.internal.runtime with parameters of type ServerEndpoint
 BasicExportTable.Entry BasicExportTable.export(Remote impl, ServerEndpoint serverEndpoint, boolean allowDGC, boolean keepAlive, Uuid id)
          Exports a remote object to this BasicExportTable.
 

Uses of ServerEndpoint in net.jini.jeri
 

Fields in net.jini.jeri declared as ServerEndpoint
private  ServerEndpoint BasicJeriExporter.se
           
 

Methods in net.jini.jeri that return ServerEndpoint
 ServerEndpoint BasicJeriExporter.getServerEndpoint()
          Returns the server endpoint for this exporter.
 

Constructors in net.jini.jeri with parameters of type ServerEndpoint
BasicJeriExporter(ServerEndpoint se, InvocationLayerFactory ilf)
          Creates a new BasicJeriExporter with the given server endpoint and invocation layer factory.
BasicJeriExporter(ServerEndpoint se, InvocationLayerFactory ilf, boolean enableDGC, boolean keepAlive)
          Creates a new BasicJeriExporter with the given server endpoint, invocation layer factory, enableDGC flag, and keepAlive flag.
BasicJeriExporter(ServerEndpoint se, InvocationLayerFactory ilf, boolean enableDGC, boolean keepAlive, Uuid id)
          Creates a new BasicJeriExporter with the given server endpoint, invocation layer factory, enableDGC flag, keepAlive flag, and object identifier.
 

Uses of ServerEndpoint in net.jini.jeri.http
 

Classes in net.jini.jeri.http that implement ServerEndpoint
 class HttpServerEndpoint
          An implementation of the ServerEndpoint abstraction that uses HTTP messages sent over TCP sockets (instances of ServerSocket) for the underlying communication mechanism.
 

Uses of ServerEndpoint in net.jini.jeri.kerberos
 

Classes in net.jini.jeri.kerberos that implement ServerEndpoint
 class KerberosServerEndpoint
          A ServerEndpoint implementation that uses Kerberos as the underlying network security protocol to support security related invocation constraints for remote requests.
 

Methods in net.jini.jeri.kerberos with parameters of type ServerEndpoint
 void KerberosEndpoint.KerberosEndpointInternals.setServerConnManager(ServerEndpoint endpoint, ServerConnManager manager)
           
 

Uses of ServerEndpoint in net.jini.jeri.ssl
 

Classes in net.jini.jeri.ssl that implement ServerEndpoint
 class HttpsServerEndpoint
          An implementation of ServerEndpoint that uses HTTPS (HTTP over TLS/SSL) to support invocation constraints for communication through firewalls.
 class SslServerEndpoint
          An implementation of ServerEndpoint that uses TLS/SSL to support invocation constraints for direct communication over TCP sockets.
 

Fields in net.jini.jeri.ssl declared as ServerEndpoint
(package private)  ServerEndpoint SslServerEndpointImpl.serverEndpoint
          The associated server endpoint.
 

Methods in net.jini.jeri.ssl with parameters of type ServerEndpoint
private static SslServerEndpointImpl SslEndpoint.SslEndpointInternals.coerce(ServerEndpoint endpoint)
           
 void SslEndpoint.SslEndpointInternals.setServerConnManager(ServerEndpoint endpoint, ServerConnManager manager)
           
 

Constructors in net.jini.jeri.ssl with parameters of type ServerEndpoint
HttpsServerEndpoint.HttpsServerEndpointImpl(ServerEndpoint serverEndpoint, Subject serverSubject, X500Principal[] serverPrincipals, String serverHost, int port, SocketFactory socketFactory, ServerSocketFactory serverSocketFactory)
           
SslServerEndpointImpl(ServerEndpoint serverEndpoint, Subject serverSubject, X500Principal[] serverPrincipals, String serverHost, int port, SocketFactory socketFactory, ServerSocketFactory serverSocketFactory)
          Creates an instance of this class.
 

Uses of ServerEndpoint in net.jini.jeri.tcp
 

Classes in net.jini.jeri.tcp that implement ServerEndpoint
 class TcpServerEndpoint
          An implementation of the ServerEndpoint abstraction that uses TCP sockets (instances of ServerSocket) for the underlying communication mechanism.
 



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