Uses of Interface
net.jini.export.Exporter

Packages that use Exporter
net.jini.activation Extensions to the Java(TM) Remote Method Invocation (Java RMI) activation framework to support activatable objects that are exported using an Exporter to go inactive, to provide invocation handlers for exporters that want to use dynamic proxies for activatable remote objects, and to support trust verification of secure activatable dynamic proxies and secure activation identifiers.  
net.jini.iiop Provides an Exporter implementation, IiopExporter, that can be used to export and unexport RMI-IIOP remote objects.  
net.jini.jeri Provides the fundamental abstractions and standard implementation classes for Jini extensible remote invocation (Jini ERI).  
net.jini.jrmp Provides an Exporter implementation, JrmpExporter, that can be used to export and unexport activatable and non-activatable JRMP remote objects.  
net.jini.security.proxytrust Defines a trust verifier to support verification of proxies that use dynamically downloaded code, implementation mechanisms to support the verification of such proxies, and an exporter for remote objects that have such proxies.  
 

Uses of Exporter in net.jini.activation
 

Classes in net.jini.activation that implement Exporter
 class ActivationExporter
          An Exporter implementation for exporting an activatable remote object using its underlying exporter.
 

Methods in net.jini.activation with parameters of type Exporter
static boolean ActivationGroup.inactive(ActivationID id, Exporter exporter)
          Attempts to make the remote object that is associated with the specified activation identifier, and that was exported through the specified exporter, inactive.
abstract  boolean ActivationGroup.inactiveObject(ActivationID id, Exporter exporter)
          Attempts to make the remote object that is associated with the specified activation identifier, and that was exported through the specified exporter, inactive.
 

Constructors in net.jini.activation with parameters of type Exporter
ActivationExporter(ActivationID id, Exporter underlyingExporter)
          Creates an exporter for an activatable remote object with the specified activation identifier, underlying exporter, and a null class loader.
ActivationExporter(ActivationID id, Exporter underlyingExporter, ClassLoader loader)
          Creates an exporter for an activatable remote object with the specified activation identifier, underlying exporter, and class loader.
 

Uses of Exporter in net.jini.iiop
 

Classes in net.jini.iiop that implement Exporter
 class IiopExporter
          An IiopExporter can be used to export a single remote object to the RMI-IIOP runtime.
 

Uses of Exporter in net.jini.jeri
 

Classes in net.jini.jeri that implement Exporter
 class BasicJeriExporter
          An Exporter implementation for exporting a remote object to use Jini extensible remote invocation (Jini ERI).
 

Uses of Exporter in net.jini.jrmp
 

Classes in net.jini.jrmp that implement Exporter
 class JrmpExporter
          A JrmpExporter contains the information necessary to export a single remote object to the JRMP runtime.
 

Uses of Exporter in net.jini.security.proxytrust
 

Classes in net.jini.security.proxytrust that implement Exporter
 class ProxyTrustExporter
          Contains the information necessary to export a remote object that has a proxy that will not directly be considered trusted by clients, such that the proxy can be trusted by clients using ProxyTrustVerifier.
 

Constructors in net.jini.security.proxytrust with parameters of type Exporter
ProxyTrustExporter(Exporter mainExporter, Exporter bootExporter)
          Creates an instance with the specified main exporter (which will be used to export the main remote object) and the specified bootstrap exporter (which will be used to export the bootstrap remote object).
ProxyTrustExporter(Exporter mainExporter, Exporter bootExporter, ClassLoader loader)
          Creates an instance with the specified main exporter (which will be used to export the main remote object), the specified bootstrap exporter (which will be used to export the bootstrap remote object), and the specified class loader (in which the generated dynamic proxy class will be defined).
 



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