JavaTM 2 Platform
Standard Edition

org.omg.CORBA
Interface Current


public interface Current
extends Object

An interface that makes it possible to access information associated with a particular thread of execution, such as security information or a transaction identifier.

An ORB or CORBA service that needs its own thread-specific state extends the CORBA package's Current. Users of the service can obtain an instance of the appropriate Current interface by invoking ORB.resolve_initial_references. For example, the Security service obtains the Current relevant to it by invoking

    ORB.resolve_initial_references("SecurityCurrent");
 

A CORBA service does not have to use this method of keeping context but may choose to do so.

Methods on classes that implement from Current access state associated with the thread in which they are invoked, not state associated with the thread from which the Current was obtained. Current objects must not be exported to other processes, or externalized with ORB.object_to_string. If any attempt is made to do so, the offending operation will raise a MARSHAL system exception.

See Also:
portable package comments for unimplemented features

Methods inherited from interface org.omg.CORBA.Object
_create_request, _create_request, _duplicate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _is_a, _is_equivalent, _non_existent, _release, _request, _set_policy_override
 


JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.