|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Context | |
| org.objectweb.david.apis.services.handler | Provides interfaces to define a service handler, to handle runtime services. |
| org.objectweb.david.libs.binding.iiop | Provides classes implementing the IIOP protocol. |
| org.objectweb.david.libs.binding.moa | Provides a simple adapter implementation, as a table of objects. |
| org.objectweb.david.libs.binding.orbs | Provides a set of (abstract) classes implementing a CORBA environment: any, typecodes, the protocol-independent parts of ORBs. |
| org.objectweb.david.libs.binding.orbs.echannel | Provides an implementation of an event channel service relying on RTP on top of IP multicast. |
| org.objectweb.david.libs.binding.orbs.iiop | Provides an CORBA-compliant IIOP ORB implementation. |
| org.objectweb.david.libs.binding.soa | Provides a simple adapter implementation, as a table of objects. |
| org.objectweb.david.libs.presentation.portable | Provides a set of classes and interfaces for "portable" presentation protocols. |
| org.objectweb.david.libs.protocols.giop | Provides a set of classes implementing the CORBA GIOP protocol. |
| org.objectweb.david.libs.resources.giop | Provides an implementation for GIOP TCP/IP connection management. |
| org.objectweb.david.libs.services.CosNaming | Provides an implementation of the CORBA COS naming service. |
| org.objectweb.david.libs.services.CosTransactions.handler | Provides a handler for a CORBA COS Transaction service implementation. |
| org.objectweb.david.libs.services.handler | Provides a set of classes implementing a services handler. |
| org.objectweb.david.libs.services.java_serial | Provides an implementation of the Java serialization service, that lets clients use Java serialization to encode values instead of CDR serialization, when the server may accept it. |
| org.objectweb.david.libs.services.naming | Provides an implementation of a simple naming service. |
| org.objectweb.david.libs.services.unknown_exception | Provides an implementation of the UnknownException service, that lets server side unexpected exceptions be propagated back to the clients. |
| org.objectweb.david.libs.stub_factories.std | Provides classes implementing the default David stub factory. |
| org.objectweb.jeremie.libs.binding.echannel | Provides an implementation of an event channel service relying on RTP on top of IP multicast. |
| org.objectweb.jeremie.libs.binding.jiop | Provides an implementation of a binder for binding Jeremie identifiers to remote objects using a simple protocol built on top of IIOP. |
| org.objectweb.jeremie.libs.binding.moa | Provides an implementation of UnicastRemoteObject, multiple instances of which are managed together by an object adapter. |
| org.objectweb.jeremie.libs.binding.soa | Provides an implementation of UnicastRemoteObject, each instance of which is managed by an object adapter. |
| org.objectweb.jeremie.libs.presentation.std | Provides a default implementation of a Jeremie marshaller factory. |
| org.objectweb.jeremie.libs.services.CosTransactions.handler | Provides a handler for a CORBA COS Transaction service implementation. |
| org.objectweb.jeremie.libs.stub_factories.std | Provides default implementations of a Jeremie reference, stub and stub factory. |
| org.objectweb.jonathan.apis.binding | Provides a set of classes and interfaces for application level identifiers, naming contexts and binders. |
| org.objectweb.jonathan.apis.kernel | Provides classes used to configure a virtual machine using Jonathan. |
| org.objectweb.jonathan.apis.presentation | Provides a set of classes and interfaces for presentation protocols (marshallers and unmarshallers). |
| org.objectweb.jonathan.apis.resources | Provides a set of classes and interfaces dealing with resource management. |
| org.objectweb.jonathan.apis.stub_factories | Provides an interface for stub factories. |
| org.objectweb.jonathan.libs.binding | Provides the default domain implementation. |
| org.objectweb.jonathan.libs.binding.echannel | Provides an implementation of an event channel service relying on RTP on top of IP multicast. |
| org.objectweb.jonathan.libs.binding.moa | Provides classes implementing a minimal object adapter. |
| org.objectweb.jonathan.libs.binding.soa | Provides classes implementing an adaptor for a single object. |
| org.objectweb.jonathan.libs.helpers | Provides some helper classes. |
| org.objectweb.jonathan.libs.kernel | Provides implementations for kernel entities. |
| org.objectweb.jonathan.libs.protocols.tcpip | Provides a set of classes giving access to the TCP/IP protocol stack. |
| org.objectweb.jonathan.libs.resources | Provides implementations for various resources and managers. |
| org.objectweb.jonathan.libs.resources.tcpip | Provides a default implementation for TCP/IP connection management. |
| Uses of Context in org.objectweb.david.apis.services.handler |
| Methods in org.objectweb.david.apis.services.handler with parameters of type Context | |
org.omg.IOP.ServiceContext[] |
ServicesHandler.getRequestContexts(int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Returns a list of service contexts. |
org.omg.IOP.ServiceContext[] |
ServicesHandler.getReplyContexts(int request_id,
Context message_context)
Returns a list of service contexts. |
void |
ServicesHandler.handleRequestContexts(org.omg.IOP.ServiceContext[] contexts,
int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Lets the handler manage the provided contexts. |
void |
ServicesHandler.handleReplyContexts(org.omg.IOP.ServiceContext[] contexts,
int request_id,
Context message_context)
Lets the handler manage the provided contexts. |
org.omg.IOP.ServiceContext |
Service.getRequestContext(int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Returns a request context. |
org.omg.IOP.ServiceContext |
Service.getReplyContext(int request_id,
Context message_context)
Returns a reply context. |
void |
Service.handleRequestContext(org.omg.IOP.ServiceContext context,
int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
This method is called by the services handler to let the operations related to the target service be performed on request arrival. |
void |
Service.handleReplyContext(org.omg.IOP.ServiceContext context,
int request_id,
Context message_context)
This method is called by the services handler to let the operations related to the target service be performed on reply arrival. |
| Uses of Context in org.objectweb.david.libs.binding.iiop |
| Methods in org.objectweb.david.libs.binding.iiop with parameters of type Context | |
Identifier |
IIOPBinder.export(Object id,
Context hints)
Creates a new identifier for the object interface designated by the id parameter. |
| Constructors in org.objectweb.david.libs.binding.iiop with parameters of type Context | |
IIOPBinder(Context _c,
ChunkFactory chunk_factory,
MarshallerFactory marshaller_factory,
ServicesHandler services_handler,
StubFactory stub_factory,
NamingContext context,
org.omg.IOP.TaggedComponent[] ior_components)
Builds a new instance of IIOPBinder. |
|
| Uses of Context in org.objectweb.david.libs.binding.moa |
| Methods in org.objectweb.david.libs.binding.moa with parameters of type Context | |
protected Object[] |
MOAImplFactory.getUsedComponents(Context _c)
Returns the components required to create a new MOAImpl
instance.
|
protected Object |
MOAImplFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new MOAImpl instance created using the provided components. |
void |
MOAImpl.export(ObjectImpl impl,
Context hints,
NamingContext nc)
Exports a CORBA object implementation to the target adapter, and recursively to the provided naming context. |
| Uses of Context in org.objectweb.david.libs.binding.orbs |
| Fields in org.objectweb.david.libs.binding.orbs declared as Context | |
protected Context |
ORBClass.orb_context
|
| Methods in org.objectweb.david.libs.binding.orbs with parameters of type Context | |
protected void |
ORBClass.initialize(Context _orb_context)
Should be called by subclasses when initializing the ORB (not via ORB.init()). |
| Uses of Context in org.objectweb.david.libs.binding.orbs.echannel |
| Methods in org.objectweb.david.libs.binding.orbs.echannel with parameters of type Context | |
protected Object[] |
EventChannelFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new EventChannelFactory instance.
|
protected Object |
EventChannelFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new EventChannelFactory instance created using the provided components. |
Identifier |
EventChannelFactory.export(Object itf,
Context hints)
This operation has no meaning in this context: an InternalException is always thrown. |
| Uses of Context in org.objectweb.david.libs.binding.orbs.iiop |
| Methods in org.objectweb.david.libs.binding.orbs.iiop with parameters of type Context | |
Identifier |
IIOPORB.export(Object id,
Context hints)
Creates a new identifier for the object interface designated by the id parameter. |
protected Object[] |
IIOPORBFactory.getUsedComponents(Context _c)
Returns the components required to create a new IIOPORB
instance.
|
protected Object |
IIOPORBFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new IIOPORB instance created using the provided components. |
protected void |
IIOPORBFactory.configure(Object _object,
Context _c,
Object[] _used_components)
|
| Uses of Context in org.objectweb.david.libs.binding.soa |
| Methods in org.objectweb.david.libs.binding.soa with parameters of type Context | |
protected Object[] |
SOAImplFactory.getUsedComponents(Context _c)
Returns the components required to create a new SOAImpl
instance.
|
protected Object |
SOAImplFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new SOAImpl instance created using the provided components. |
void |
SOAImpl.export(ObjectImpl impl,
Context hints,
NamingContext nc)
Exports a CORBA object implementation to the target adapter, and recursively to the provided naming context. |
| Uses of Context in org.objectweb.david.libs.presentation.portable |
| Methods in org.objectweb.david.libs.presentation.portable that return Context | |
Context |
PortableMarshallerFactory.PortableMarshaller.getContext()
|
Context |
PortableMarshallerFactory.PortableUnMarshaller.getContext()
|
| Methods in org.objectweb.david.libs.presentation.portable with parameters of type Context | |
protected Object[] |
CDRMarshallerFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new CDRMarshallerFactory instance.
|
protected Object |
CDRMarshallerFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new CDRMarshallerFactory instance created using the provided components. |
| Uses of Context in org.objectweb.david.libs.protocols.giop |
| Constructors in org.objectweb.david.libs.protocols.giop with parameters of type Context | |
GIOPProtocol(Context _c,
Scheduler scheduler,
MarshallerFactory marshaller_factory,
ChunkFactory chunk_factory,
NamingContext adapter,
ServicesHandler services_handler)
Creates a new GIOP Protocol instance. |
|
| Uses of Context in org.objectweb.david.libs.resources.giop |
| Methods in org.objectweb.david.libs.resources.giop with parameters of type Context | |
protected Object[] |
GIOPConnectionFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new GIOPConnectionFactory instance.
|
protected Object |
GIOPConnectionFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new GIOPConnectionFactory instance created using the provided components. |
| Uses of Context in org.objectweb.david.libs.services.CosNaming |
| Methods in org.objectweb.david.libs.services.CosNaming with parameters of type Context | |
Object |
NSRetriever.newObject(Context _c)
Returns an object created using information contained in the provided context.
|
| Uses of Context in org.objectweb.david.libs.services.CosTransactions.handler |
| Methods in org.objectweb.david.libs.services.CosTransactions.handler with parameters of type Context | |
org.omg.IOP.ServiceContext |
TSHandler.getRequestContext(int request_id,
boolean response_expected,
byte[] object_key,
Context ignored)
Returns a request context. |
org.omg.IOP.ServiceContext |
TSHandler.getReplyContext(int request_id,
Context ignored)
Returns a reply context. |
void |
TSHandler.handleRequestContext(org.omg.IOP.ServiceContext context,
int request_id,
boolean response_expected,
byte[] object_key,
Context ignored)
This method is called by the services handler to let the operations related to the target service be performed on request arrival. |
void |
TSHandler.handleReplyContext(org.omg.IOP.ServiceContext context,
int request_id,
Context ignored)
This method is called by the services handler to let the operations related to the target service be performed on reply arrival. |
protected Object[] |
DavidTSHandlerFactory.getUsedComponents(Context _c)
Returns the components required to create a new DavidTSHandler instance.
|
protected Object |
DavidTSHandlerFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new DavidTSHandler instance created using the provided components. |
| Constructors in org.objectweb.david.libs.services.CosTransactions.handler with parameters of type Context | |
DavidTSHandler(Context c,
Object[] used_components)
Builds a new Jeremie transaction service handler instance. |
|
| Uses of Context in org.objectweb.david.libs.services.handler |
| Fields in org.objectweb.david.libs.services.handler declared as Context | |
protected Context |
DavidServicesHandler.services_context
|
| Methods in org.objectweb.david.libs.services.handler with parameters of type Context | |
org.omg.IOP.ServiceContext[] |
DavidServicesHandler.getRequestContexts(int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Returns a list of service contexts. |
org.omg.IOP.ServiceContext[] |
DavidServicesHandler.getReplyContexts(int request_id,
Context message_context)
Returns a list of service contexts. |
void |
DavidServicesHandler.handleRequestContexts(org.omg.IOP.ServiceContext[] contexts,
int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Lets the handler manage the provided contexts. |
void |
DavidServicesHandler.handleReplyContexts(org.omg.IOP.ServiceContext[] contexts,
int request_id,
Context message_context)
Lets the handler manage the provided contexts. |
protected Object[] |
DavidServicesHandlerFactory.getUsedComponents(Context c)
Returns the components required to create a new DavidServicesHandler instance.
|
protected Object |
DavidServicesHandlerFactory.newInstance(Context c,
Object[] used_components)
Returns a new DavidServicesHandler instance created using the provided components. |
| Constructors in org.objectweb.david.libs.services.handler with parameters of type Context | |
DavidServicesHandler(Context services_context)
Builds a new DavidServicesHandler instance. |
|
| Uses of Context in org.objectweb.david.libs.services.java_serial |
| Methods in org.objectweb.david.libs.services.java_serial with parameters of type Context | |
Object |
JavaSerialService.newObject(Context c)
|
org.omg.IOP.ServiceContext |
JavaSerialService.getRequestContext(int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
Returns an indication whether java serialization is used. |
org.omg.IOP.ServiceContext |
JavaSerialService.getReplyContext(int request_id,
Context ignored)
Returns null; |
void |
JavaSerialService.handleRequestContext(org.omg.IOP.ServiceContext context,
int request_id,
boolean response_expected,
byte[] object_key,
Context message_context)
This method is called by the services handler to let the operations related to the target service be performed on request arrival. |
void |
JavaSerialService.handleReplyContext(org.omg.IOP.ServiceContext context,
int request_id,
Context ignored)
This method is called by the services handler to let the operations related to the target service be performed on reply arrival. |
| Uses of Context in org.objectweb.david.libs.services.naming |
| Methods in org.objectweb.david.libs.services.naming with parameters of type Context | |
Object |
NSRetriever.newObject(Context _c)
Returns an object created using information contained in the provided context.
|
| Uses of Context in org.objectweb.david.libs.services.unknown_exception |
| Methods in org.objectweb.david.libs.services.unknown_exception with parameters of type Context | |
org.omg.IOP.ServiceContext |
UnknownExceptionService.getRequestContext(int request_id,
boolean response_expected,
byte[] object_key,
Context ignored)
Returns a null request context. |
org.omg.IOP.ServiceContext |
UnknownExceptionService.getReplyContext(int request_id,
Context ignored)
Returns a reply context. |
void |
UnknownExceptionService.handleRequestContext(org.omg.IOP.ServiceContext context,
int request_id,
boolean response_expected,
byte[] object_key,
Context ignored)
This method is called by the services handler to let the operations related to the target service be performed on request arrival. |
void |
UnknownExceptionService.handleReplyContext(org.omg.IOP.ServiceContext context,
int request_id,
Context ignored)
This method is called by the services handler to let the operations related to the target service be performed on reply arrival. |
protected Object[] |
UnknownExceptionServiceFactory.getUsedComponents(Context _c)
Returns the components required to create a new UnknownExceptionService instance.
|
protected Object |
UnknownExceptionServiceFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new UnknownExceptionService instance created using the provided components. |
| Uses of Context in org.objectweb.david.libs.stub_factories.std |
| Methods in org.objectweb.david.libs.stub_factories.std with parameters of type Context | |
protected Object[] |
JDelegateFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new JDelegateFactory instance.
|
protected Object |
JDelegateFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new JDelegateFactory instance created using the provided components. |
Object |
JStubFactory.newStub(SessionIdentifier session_id,
Identifier[] ids,
Context hints)
Creates a new stub. |
| Uses of Context in org.objectweb.jeremie.libs.binding.echannel |
| Methods in org.objectweb.jeremie.libs.binding.echannel with parameters of type Context | |
protected Object[] |
EventChannelFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new EventChannelFactory instance.
|
protected Object |
EventChannelFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new EventChannelFactory instance created using the provided components. |
protected void |
EventChannelFactory.initialize(Context c,
Object[] used_components)
Initializes the EventChannelfactory. |
Identifier |
EventChannelFactory.export(Object itf,
Context hints)
This operation has no meaning in this context: an InternalException is always thrown. |
Object |
EventChannelFactory.newStub(SessionIdentifier ep,
Identifier[] ids,
Context hints)
Builds a new stub adapted for one-way event generation |
| Uses of Context in org.objectweb.jeremie.libs.binding.jiop |
| Methods in org.objectweb.jeremie.libs.binding.jiop with parameters of type Context | |
protected void |
JIOP.initialize(Context c,
Object[] used_components)
Initializes this JIOP binder. |
Identifier |
JIOP.export(Object id,
Context hints)
Exports the given identifier to an underlying IIOP binder. |
protected Object[] |
JIOPFactory.getUsedComponents(Context _c)
Returns the components required to create a new JIOP
instance.
|
protected Object |
JIOPFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new JIOP instance created using the provided components. |
| Uses of Context in org.objectweb.jeremie.libs.binding.moa |
| Methods in org.objectweb.jeremie.libs.binding.moa with parameters of type Context | |
protected Object[] |
MOAContextFactory.getUsedComponents(Context _c)
Returns the components required to create a new MOAContext
instance.
|
protected Object |
MOAContextFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new MOAContext instance created using the provided components. |
static RemoteStub |
UnicastRemoteObject.export(Remote impl,
Context hints,
JRMIBFactory binder)
Exports the given remote object to the object adapter, and then recursively to the given binding factory. |
static RemoteStub |
MOAContext.export(Remote impl,
Context hints,
JRMIBFactory binder,
RMIClientSocketFactory csf,
RMIServerSocketFactory ssf)
Exports the given remote object to the object adapter, and then recursively to the given binding factory. |
| Uses of Context in org.objectweb.jeremie.libs.binding.soa |
| Methods in org.objectweb.jeremie.libs.binding.soa with parameters of type Context | |
static RemoteStub |
SOAContext.export(Remote impl,
Context hints,
JRMIBFactory binder,
RMIClientSocketFactory csf,
RMIServerSocketFactory ssf)
Exports the given remote object to the object adapter, and then recursively to the given binding factory. |
protected Object[] |
SOAContextFactory.getUsedComponents(Context _c)
Returns the components required to create a new SOAContext
instance.
|
protected Object |
SOAContextFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new SOAContext instance created using the provided components. |
static RemoteStub |
UnicastRemoteObject.export(Remote impl,
Context hints,
JRMIBFactory binder)
Exports the given remote object to the object adapter, and then recursively to the given binding factory. |
| Uses of Context in org.objectweb.jeremie.libs.presentation.std |
| Fields in org.objectweb.jeremie.libs.presentation.std declared as Context | |
protected Context |
StdMarshallerFactory.StdMarshaller.context
|
protected Context |
StdMarshallerFactory.StdUnMarshaller.context
|
| Methods in org.objectweb.jeremie.libs.presentation.std that return Context | |
Context |
StdMarshallerFactory.StdMarshaller.getContext()
|
Context |
StdMarshallerFactory.StdUnMarshaller.getContext()
|
| Methods in org.objectweb.jeremie.libs.presentation.std with parameters of type Context | |
protected Object[] |
StdMarshallerFactoryFactory.getUsedComponents(Context _c)
Returns the components required to create a new StdMarshallerFactory instance.
|
protected Object |
StdMarshallerFactoryFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new StdMarshallerFactory instance created using the provided components. |
| Uses of Context in org.objectweb.jeremie.libs.services.CosTransactions.handler |
| Methods in org.objectweb.jeremie.libs.services.CosTransactions.handler with parameters of type Context | |
protected Object[] |
JRMITSHandlerFactory.getUsedComponents(Context _c)
Returns the components required to create a new JRMITSHandler instance.
|
protected Object |
JRMITSHandlerFactory.newInstance(Context _c,
Object[] _used_components)
Returns a new JRMITSHandler instance created using the provided components. |
| Constructors in org.objectweb.jeremie.libs.services.CosTransactions.handler with parameters of type Context | |
JRMITSHandler(Context c,
Object[] used_components)
Builds a new Jeremie transaction service handler instance. |
|
| Uses of Context in org.objectweb.jeremie.libs.stub_factories.std |
| Methods in org.objectweb.jeremie.libs.stub_factories.std with parameters of type Context | |
Object |
StdStubFactory.newStub(SessionIdentifier ep,
Identifier[] ids,
Context hints)
Creates a stub object with a reference containing the given identifiers and the given session identifier. |
| Constructors in org.objectweb.jeremie.libs.stub_factories.std with parameters of type Context | |
StdStubFactory(Context _c,
MarshallerFactory mfactory)
Constructs a new Jeremie stub factory. |
|
| Uses of Context in org.objectweb.jonathan.apis.binding |
| Methods in org.objectweb.jonathan.apis.binding with parameters of type Context | |
Identifier |
NamingContext.export(Object itf,
Context hints)
Creates a new identifier for the object interface designated by the itf parameter. |
Object |
Identifier.bind(Identifier[] ref,
Context hints)
The bind operation returns an object giving access to the object interface referenced by the target identifier. |
| Uses of Context in org.objectweb.jonathan.apis.kernel |
| Subinterfaces of Context in org.objectweb.jonathan.apis.kernel | |
interface |
Configuration
A context represents a set of typed objects, each identified by a name. |
| Methods in org.objectweb.jonathan.apis.kernel that return Context | |
static Context |
Kernel.newConfiguration(Class c)
Returns the effective bootstrap configuration. |
Context |
Context.setScope(Context scope)
Sets the scope of the target context; |
Context |
Context.getScope()
Returns the scope of the target context; |
Context |
ContextFactory.newContext()
Returns a new Context instance. |
Context |
ContextFactory.newContext(Context scope)
Returns a new Context instance with scope scope. |
| Methods in org.objectweb.jonathan.apis.kernel with parameters of type Context | |
Object |
Factory.newObject(Context c)
Returns an object created using information contained in the provided context. |
Configuration |
ConfigurationFactory.newConfiguration(Context scope)
Returns a new Configuration instance with scope scope. |
Context |
Context.setScope(Context scope)
Sets the scope of the target context; |
Context |
ContextFactory.newContext(Context scope)
Returns a new Context instance with scope scope. |
| Uses of Context in org.objectweb.jonathan.apis.presentation |
| Methods in org.objectweb.jonathan.apis.presentation that return Context | |
Context |
UnMarshaller.getContext()
Returns a Context associated with this unmarshaller. |
Context |
Marshaller.getContext()
Returns a Context associated with this marshaller. |
| Uses of Context in org.objectweb.jonathan.apis.resources |
| Methods in org.objectweb.jonathan.apis.resources that return Context | |
Context |
Job.getContext()
Returns a context associated with the target Job. |
| Uses of Context in org.objectweb.jonathan.apis.stub_factories |
| Methods in org.objectweb.jonathan.apis.stub_factories with parameters of type Context | |
Object |
StubFactory.newStub(SessionIdentifier session_id,
Identifier[] ids,
Context hints)
Creates a new stub. |
| Uses of Context in org.objectweb.jonathan.libs.binding |
| Methods in org.objectweb.jonathan.libs.binding with parameters of type Context | |
Object |
JDomainFactory.newObject(Context _c)
Returns a new JDomain instance. |
Identifier |
JDomain.export(Object id,
Context hints)
Creates a new identifier for the object interface designated by the id parameter. |
| Constructors in org.objectweb.jonathan.libs.binding with parameters of type |