All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.omg.CORBA.Context
interface Context { readonly attribute ::CORBA::Identifier context_name; readonly attribute ::CORBA::Context parent; void set_one_value( in ::CORBA::Identifier prop_name, in any value ); void set_values( in ::CORBA::NVList values ); ::CORBA::NVList get_values( in ::CORBA::Identifier start_scope, in ::CORBA::Flags op_flags, in ::CORBA::Identifier prop_name ); void delete_values( in ::CORBA::Identifier prop_name ); ::CORBA::Context create_child( in ::CORBA::Identifier child_context_name ); };The Context interface contains a property list, which is propagated from the client to the server in a request. These properties are left to the user and implementor to define: the CORBA specifation does not define the contents of a Context. The global default context is obtained from the ORB singleton. Contexts are organized as a tree: each context contains a pointer to its parent context. The root context is the global default context, whose parent is null.
public Context()
public abstract String context_name()
Reader for attribute: ::CORBA::Context::context_name.
readonly attribute ::CORBA::Identifier context_name;
public abstract Context parent()
Reader for attribute: ::CORBA::Context::parent.
readonly attribute ::CORBA::Context parent;
public abstract void set_one_value(String prop_name, Any value)
Operation: ::CORBA::Context::set_one_value.
void set_one_value( in ::CORBA::Identifier prop_name, in any value );
public abstract void set_values(NVList values)
Operation: ::CORBA::Context::set_values.
void set_values( in ::CORBA::NVList values );
public abstract NVList get_values(String start_scope, int op_flags, String prop_name)
Operation: ::CORBA::Context::get_values.
::CORBA::NVList get_values( in ::CORBA::Identifier start_scope, in ::CORBA::Flags op_flags, in ::CORBA::Identifier prop_name );
public abstract void delete_values(String prop_name)
Operation: ::CORBA::Context::delete_values.
void delete_values( in ::CORBA::Identifier prop_name );
public abstract Context create_child(String child_context_name)
Operation: ::CORBA::Context::create_child.
::CORBA::Context create_child( in ::CORBA::Identifier child_context_name );
All Packages Class Hierarchy This Package Previous Next Index