FileDocCategorySizeDatePackage
NamingContextHolder.javaAPI DocJava SE 5 API1311Fri Aug 26 17:25:12 BST 2005org.omg.CosNaming

NamingContextHolder

public final class NamingContextHolder extends Object implements org.omg.CORBA.portable.Streamable
A naming context is an object that contains a set of name bindings in which each name is unique. Different names can be bound to an object in the same or different contexts at the same time.

See CORBA COS Naming Specification.

Fields Summary
public org.omg.CosNaming.NamingContext
value
Constructors Summary
public NamingContextHolder()


    
  
  
public NamingContextHolder(org.omg.CosNaming.NamingContext initialValue)

    value = initialValue;
  
Methods Summary
public void_read(org.omg.CORBA.portable.InputStream i)

    value = org.omg.CosNaming.NamingContextHelper.read (i);
  
public org.omg.CORBA.TypeCode_type()

    return org.omg.CosNaming.NamingContextHelper.type ();
  
public void_write(org.omg.CORBA.portable.OutputStream o)

    org.omg.CosNaming.NamingContextHelper.write (o, value);