You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2010/01/14 10:17:44 UTC

svn commit: r899128 [7/24] - in /geronimo/yoko/trunk/yoko-spec-corba: ./ src/main/generated-sources/ src/main/generated-sources/idl/ src/main/generated-sources/idl/org/ src/main/generated-sources/idl/org/omg/ src/main/generated-sources/idl/org/omg/CSI/...

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,94 @@
+package org.omg.CosNaming;
+
+
+/**
+* org/omg/CosNaming/NamingContextHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/** 
+   * 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. <p>
+   * 
+   * See <a href=" http://www.omg.org/corba/sectrans.htm#nam">CORBA COS 
+   * Naming Specification.</a>
+   */
+abstract public class NamingContextHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContext that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContext extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      __typeCode = org.omg.CORBA.ORB.init ().create_interface_tc (org.omg.CosNaming.NamingContextHelper.id (), "NamingContext");
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContext read (org.omg.CORBA.portable.InputStream istream)
+  {
+    return narrow (istream.read_Object (_NamingContextStub.class));
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContext value)
+  {
+    ostream.write_Object ((org.omg.CORBA.Object) value);
+  }
+
+  public static org.omg.CosNaming.NamingContext narrow (org.omg.CORBA.Object obj)
+  {
+    if (obj == null)
+      return null;
+    else if (obj instanceof org.omg.CosNaming.NamingContext)
+      return (org.omg.CosNaming.NamingContext)obj;
+    else if (!obj._is_a (id ()))
+      throw new org.omg.CORBA.BAD_PARAM ();
+    else
+    {
+      org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
+      org.omg.CosNaming._NamingContextStub stub = new org.omg.CosNaming._NamingContextStub ();
+      stub._set_delegate(delegate);
+      return stub;
+    }
+  }
+
+  public static org.omg.CosNaming.NamingContext unchecked_narrow (org.omg.CORBA.Object obj)
+  {
+    if (obj == null)
+      return null;
+    else if (obj instanceof org.omg.CosNaming.NamingContext)
+      return (org.omg.CosNaming.NamingContext)obj;
+    else
+    {
+      org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate ();
+      org.omg.CosNaming._NamingContextStub stub = new org.omg.CosNaming._NamingContextStub ();
+      stub._set_delegate(delegate);
+      return stub;
+    }
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,47 @@
+package org.omg.CosNaming;
+
+/**
+* org/omg/CosNaming/NamingContextHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/** 
+   * 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. <p>
+   * 
+   * See <a href=" http://www.omg.org/corba/sectrans.htm#nam">CORBA COS 
+   * Naming Specification.</a>
+   */
+public final class NamingContextHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContext value = null;
+
+  public NamingContextHolder ()
+  {
+  }
+
+  public NamingContextHolder (org.omg.CosNaming.NamingContext initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,200 @@
+package org.omg.CosNaming;
+
+
+/**
+* org/omg/CosNaming/NamingContextOperations.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/** 
+   * 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. <p>
+   * 
+   * See <a href=" http://www.omg.org/corba/sectrans.htm#nam">CORBA COS 
+   * Naming Specification.</a>
+   */
+public interface NamingContextOperations 
+{
+
+  /**
+       * Creates a binding of a name and an object in the naming context.
+       * Naming contexts that are bound using bind do not participate in name
+       * resolution when compound names are passed to be resolved. 
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param obj The Object to bind with the given name<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       *
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       */
+  void bind (org.omg.CosNaming.NameComponent[] n, org.omg.CORBA.Object obj) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName, org.omg.CosNaming.NamingContextPackage.AlreadyBound;
+
+  /**
+       * Names an object that is a naming context. Naming contexts that
+       * are bound using bind_context() participate in name resolution 
+       * when compound names are passed to be resolved.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param nc NamingContect object to bind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       *
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       */
+  void bind_context (org.omg.CosNaming.NameComponent[] n, org.omg.CosNaming.NamingContext nc) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName, org.omg.CosNaming.NamingContextPackage.AlreadyBound;
+
+  /**
+       * Creates a binding of a name and an object in the naming context
+       * even if the name is already bound in the context. Naming contexts 
+       * that are bound using rebind do not participate in name resolution 
+       * when compound names are passed to be resolved.
+       * 
+       * @param  n Name of the object <p>
+       * 
+       * @parm obj The Object to rebind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+  void rebind (org.omg.CosNaming.NameComponent[] n, org.omg.CORBA.Object obj) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName;
+
+  /** 
+       * Creates a binding of a name and a naming context in the naming
+       * context even if the name is already bound in the context. Naming 
+       * contexts that are bound using rebind_context() participate in name 
+       * resolution when compound names are passed to be resolved.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param nc NamingContect object to rebind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+  void rebind_context (org.omg.CosNaming.NameComponent[] n, org.omg.CosNaming.NamingContext nc) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName;
+
+  /** 
+       * The resolve operation is the process of retrieving an object
+       * bound to a name in a given context. The given name must exactly 
+       * match the bound name. The naming service does not return the type 
+       * of the object. Clients are responsible for "narrowing" the object 
+       * to the appropriate type. That is, clients typically cast the returned 
+       * object from Object to a more specialized interface.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+  org.omg.CORBA.Object resolve (org.omg.CosNaming.NameComponent[] n) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName;
+
+  /** 
+       * The unbind operation removes a name binding from a context.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+  void unbind (org.omg.CosNaming.NameComponent[] n) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName;
+
+  /**
+       * The list operation allows a client to iterate through a set of
+       * bindings in a naming context. <p>
+       * 
+       * The list operation returns at most the requested number of
+       * bindings in BindingList bl. 
+       * <ul>
+       * <li>If the naming context contains additional 
+       * bindings, the list operation returns a BindingIterator with the 
+       * additional bindings. 
+       * <li>If the naming context does not contain additional 
+       * bindings, the binding iterator is a nil object reference.
+       * </ul>
+       * 
+       * @param how_many the maximum number of bindings to return <p>
+       * 
+       * @param bl the returned list of bindings <p>
+       * 
+       * @param bi the returned binding iterator <p>
+       */
+  void list (int how_many, org.omg.CosNaming.BindingListHolder bl, org.omg.CosNaming.BindingIteratorHolder bi);
+
+  /**
+       * This operation returns a naming context implemented by the same
+       * naming server as the context on which the operation was invoked. 
+       * The new context is not bound to any name.
+       */
+  org.omg.CosNaming.NamingContext new_context ();
+
+  /**
+       * This operation creates a new context and binds it to the name
+       * supplied as an argument. The newly-created context is implemented 
+       * by the same naming server as the context in which it was bound (that 
+       * is, the naming server that implements the context denoted by the 
+       * name argument excluding the last component).
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+  org.omg.CosNaming.NamingContext bind_new_context (org.omg.CosNaming.NameComponent[] n) throws org.omg.CosNaming.NamingContextPackage.NotFound, org.omg.CosNaming.NamingContextPackage.AlreadyBound, org.omg.CosNaming.NamingContextPackage.CannotProceed, org.omg.CosNaming.NamingContextPackage.InvalidName;
+
+  /**
+       * The destroy operation deletes a naming context. If the naming 
+       * context contains bindings, the NotEmpty exception is raised.
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotEmpty Indicates that the Naming Context contains bindings.
+       */
+  void destroy () throws org.omg.CosNaming.NamingContextPackage.NotEmpty;
+} // interface NamingContextOperations

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextOperations.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,432 @@
+package org.omg.CosNaming;
+
+
+/**
+* org/omg/CosNaming/NamingContextPOA.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/** 
+   * 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. <p>
+   * 
+   * See <a href=" http://www.omg.org/corba/sectrans.htm#nam">CORBA COS 
+   * Naming Specification.</a>
+   */
+public abstract class NamingContextPOA extends org.omg.PortableServer.Servant
+ implements org.omg.CosNaming.NamingContextOperations, org.omg.CORBA.portable.InvokeHandler
+{
+
+  // Constructors
+
+  private static java.util.Hashtable _methods = new java.util.Hashtable ();
+  static
+  {
+    _methods.put ("bind", new java.lang.Integer (0));
+    _methods.put ("bind_context", new java.lang.Integer (1));
+    _methods.put ("rebind", new java.lang.Integer (2));
+    _methods.put ("rebind_context", new java.lang.Integer (3));
+    _methods.put ("resolve", new java.lang.Integer (4));
+    _methods.put ("unbind", new java.lang.Integer (5));
+    _methods.put ("list", new java.lang.Integer (6));
+    _methods.put ("new_context", new java.lang.Integer (7));
+    _methods.put ("bind_new_context", new java.lang.Integer (8));
+    _methods.put ("destroy", new java.lang.Integer (9));
+  }
+
+  public org.omg.CORBA.portable.OutputStream _invoke (String $method,
+                                org.omg.CORBA.portable.InputStream in,
+                                org.omg.CORBA.portable.ResponseHandler $rh)
+  {
+    org.omg.CORBA.portable.OutputStream out = null;
+    java.lang.Integer __method = (java.lang.Integer)_methods.get ($method);
+    if (__method == null)
+      throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
+
+    switch (__method.intValue ())
+    {
+
+  /**
+       * Creates a binding of a name and an object in the naming context.
+       * Naming contexts that are bound using bind do not participate in name
+       * resolution when compound names are passed to be resolved. 
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param obj The Object to bind with the given name<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       *
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       */
+       case 0:  // CosNaming/NamingContext/bind
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CORBA.Object obj = org.omg.CORBA.ObjectHelper.read (in);
+           this.bind (n, obj);
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.AlreadyBound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /**
+       * Names an object that is a naming context. Naming contexts that
+       * are bound using bind_context() participate in name resolution 
+       * when compound names are passed to be resolved.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param nc NamingContect object to bind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       *
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       */
+       case 1:  // CosNaming/NamingContext/bind_context
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CosNaming.NamingContext nc = org.omg.CosNaming.NamingContextHelper.read (in);
+           this.bind_context (n, nc);
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.AlreadyBound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /**
+       * Creates a binding of a name and an object in the naming context
+       * even if the name is already bound in the context. Naming contexts 
+       * that are bound using rebind do not participate in name resolution 
+       * when compound names are passed to be resolved.
+       * 
+       * @param  n Name of the object <p>
+       * 
+       * @parm obj The Object to rebind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+       case 2:  // CosNaming/NamingContext/rebind
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CORBA.Object obj = org.omg.CORBA.ObjectHelper.read (in);
+           this.rebind (n, obj);
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /** 
+       * Creates a binding of a name and a naming context in the naming
+       * context even if the name is already bound in the context. Naming 
+       * contexts that are bound using rebind_context() participate in name 
+       * resolution when compound names are passed to be resolved.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @param nc NamingContect object to rebind with the given name <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+       case 3:  // CosNaming/NamingContext/rebind_context
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CosNaming.NamingContext nc = org.omg.CosNaming.NamingContextHelper.read (in);
+           this.rebind_context (n, nc);
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /** 
+       * The resolve operation is the process of retrieving an object
+       * bound to a name in a given context. The given name must exactly 
+       * match the bound name. The naming service does not return the type 
+       * of the object. Clients are responsible for "narrowing" the object 
+       * to the appropriate type. That is, clients typically cast the returned 
+       * object from Object to a more specialized interface.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+       case 4:  // CosNaming/NamingContext/resolve
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CORBA.Object $result = null;
+           $result = this.resolve (n);
+           out = $rh.createReply();
+           org.omg.CORBA.ObjectHelper.write (out, $result);
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /** 
+       * The unbind operation removes a name binding from a context.
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+       case 5:  // CosNaming/NamingContext/unbind
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           this.unbind (n);
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /**
+       * The list operation allows a client to iterate through a set of
+       * bindings in a naming context. <p>
+       * 
+       * The list operation returns at most the requested number of
+       * bindings in BindingList bl. 
+       * <ul>
+       * <li>If the naming context contains additional 
+       * bindings, the list operation returns a BindingIterator with the 
+       * additional bindings. 
+       * <li>If the naming context does not contain additional 
+       * bindings, the binding iterator is a nil object reference.
+       * </ul>
+       * 
+       * @param how_many the maximum number of bindings to return <p>
+       * 
+       * @param bl the returned list of bindings <p>
+       * 
+       * @param bi the returned binding iterator <p>
+       */
+       case 6:  // CosNaming/NamingContext/list
+       {
+         int how_many = in.read_ulong ();
+         org.omg.CosNaming.BindingListHolder bl = new org.omg.CosNaming.BindingListHolder ();
+         org.omg.CosNaming.BindingIteratorHolder bi = new org.omg.CosNaming.BindingIteratorHolder ();
+         this.list (how_many, bl, bi);
+         out = $rh.createReply();
+         org.omg.CosNaming.BindingListHelper.write (out, bl.value);
+         org.omg.CosNaming.BindingIteratorHelper.write (out, bi.value);
+         break;
+       }
+
+
+  /**
+       * This operation returns a naming context implemented by the same
+       * naming server as the context on which the operation was invoked. 
+       * The new context is not bound to any name.
+       */
+       case 7:  // CosNaming/NamingContext/new_context
+       {
+         org.omg.CosNaming.NamingContext $result = null;
+         $result = this.new_context ();
+         out = $rh.createReply();
+         org.omg.CosNaming.NamingContextHelper.write (out, $result);
+         break;
+       }
+
+
+  /**
+       * This operation creates a new context and binds it to the name
+       * supplied as an argument. The newly-created context is implemented 
+       * by the same naming server as the context in which it was bound (that 
+       * is, the naming server that implements the context denoted by the 
+       * name argument excluding the last component).
+       * 
+       * @param n Name of the object <p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.AlreadyBound Indicates an object is already 
+       * bound to the specified name.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed Indicates that the implementation has
+       * given up for some reason. The client, however, may be able to 
+       * continue the operation at the returned naming context.<p>
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.InvalidName Indicates that the name is invalid. <p>
+       */
+       case 8:  // CosNaming/NamingContext/bind_new_context
+       {
+         try {
+           org.omg.CosNaming.NameComponent n[] = org.omg.CosNaming.NameHelper.read (in);
+           org.omg.CosNaming.NamingContext $result = null;
+           $result = this.bind_new_context (n);
+           out = $rh.createReply();
+           org.omg.CosNaming.NamingContextHelper.write (out, $result);
+         } catch (org.omg.CosNaming.NamingContextPackage.NotFound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.AlreadyBound $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.CannotProceed $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (out, $ex);
+         } catch (org.omg.CosNaming.NamingContextPackage.InvalidName $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (out, $ex);
+         }
+         break;
+       }
+
+
+  /**
+       * The destroy operation deletes a naming context. If the naming 
+       * context contains bindings, the NotEmpty exception is raised.
+       * 
+       * @exception org.omg.CosNaming.NamingContextPackage.NotEmpty Indicates that the Naming Context contains bindings.
+       */
+       case 9:  // CosNaming/NamingContext/destroy
+       {
+         try {
+           this.destroy ();
+           out = $rh.createReply();
+         } catch (org.omg.CosNaming.NamingContextPackage.NotEmpty $ex) {
+           out = $rh.createExceptionReply ();
+           org.omg.CosNaming.NamingContextPackage.NotEmptyHelper.write (out, $ex);
+         }
+         break;
+       }
+
+       default:
+         throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
+    }
+
+    return out;
+  } // _invoke
+
+  // Type-specific CORBA::Object operations
+  private static String[] __ids = {
+    "IDL:omg.org/CosNaming/NamingContext:1.0"};
+
+  public String[] _all_interfaces (org.omg.PortableServer.POA poa, byte[] objectId)
+  {
+    return (String[])__ids.clone ();
+  }
+
+  public NamingContext _this() 
+  {
+    return NamingContextHelper.narrow(
+    super._this_object());
+  }
+
+  public NamingContext _this(org.omg.CORBA.ORB orb) 
+  {
+    return NamingContextHelper.narrow(
+    super._this_object(orb));
+  }
+
+
+} // class NamingContextPOA

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPOA.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,25 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/AlreadyBound.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class AlreadyBound extends org.omg.CORBA.UserException
+{
+
+  public AlreadyBound ()
+  {
+    super(AlreadyBoundHelper.id());
+  } // ctor
+
+
+  public AlreadyBound (String $reason)
+  {
+    super(AlreadyBoundHelper.id() + "  " + $reason);
+  } // ctor
+
+} // class AlreadyBound

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,72 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class AlreadyBoundHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/AlreadyBound:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.AlreadyBound that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.AlreadyBound extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  private static boolean __active = false;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      synchronized (org.omg.CORBA.TypeCode.class)
+      {
+        if (__typeCode == null)
+        {
+          if (__active)
+          {
+            return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+          }
+          __active = true;
+          org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [0];
+          org.omg.CORBA.TypeCode _tcOf_members0 = null;
+          __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.id (), "AlreadyBound", _members0);
+          __active = false;
+        }
+      }
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.AlreadyBound read (org.omg.CORBA.portable.InputStream istream)
+  {
+    org.omg.CosNaming.NamingContextPackage.AlreadyBound value = new org.omg.CosNaming.NamingContextPackage.AlreadyBound ();
+    // read and discard the repository ID
+    istream.read_string ();
+    return value;
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.AlreadyBound value)
+  {
+    // write the repository ID
+    ostream.write_string (id ());
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+/**
+* org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class AlreadyBoundHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContextPackage.AlreadyBound value = null;
+
+  public AlreadyBoundHolder ()
+  {
+  }
+
+  public AlreadyBoundHolder (org.omg.CosNaming.NamingContextPackage.AlreadyBound initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/AlreadyBoundHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,36 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/CannotProceed.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class CannotProceed extends org.omg.CORBA.UserException
+{
+  public org.omg.CosNaming.NamingContext cxt = null;
+  public org.omg.CosNaming.NameComponent rest_of_name[] = null;
+
+  public CannotProceed ()
+  {
+    super(CannotProceedHelper.id());
+  } // ctor
+
+  public CannotProceed (org.omg.CosNaming.NamingContext _cxt, org.omg.CosNaming.NameComponent[] _rest_of_name)
+  {
+    super(CannotProceedHelper.id());
+    cxt = _cxt;
+    rest_of_name = _rest_of_name;
+  } // ctor
+
+
+  public CannotProceed (String $reason, org.omg.CosNaming.NamingContext _cxt, org.omg.CosNaming.NameComponent[] _rest_of_name)
+  {
+    super(CannotProceedHelper.id() + "  " + $reason);
+    cxt = _cxt;
+    rest_of_name = _rest_of_name;
+  } // ctor
+
+} // class CannotProceed

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceed.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,88 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class CannotProceedHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/CannotProceed:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.CannotProceed that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.CannotProceed extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  private static boolean __active = false;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      synchronized (org.omg.CORBA.TypeCode.class)
+      {
+        if (__typeCode == null)
+        {
+          if (__active)
+          {
+            return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+          }
+          __active = true;
+          org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
+          org.omg.CORBA.TypeCode _tcOf_members0 = null;
+          _tcOf_members0 = org.omg.CosNaming.NamingContextHelper.type ();
+          _members0[0] = new org.omg.CORBA.StructMember (
+            "cxt",
+            _tcOf_members0,
+            null);
+          _tcOf_members0 = org.omg.CosNaming.NameComponentHelper.type ();
+          _tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
+          _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.CosNaming.NameHelper.id (), "Name", _tcOf_members0);
+          _members0[1] = new org.omg.CORBA.StructMember (
+            "rest_of_name",
+            _tcOf_members0,
+            null);
+          __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.id (), "CannotProceed", _members0);
+          __active = false;
+        }
+      }
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.CannotProceed read (org.omg.CORBA.portable.InputStream istream)
+  {
+    org.omg.CosNaming.NamingContextPackage.CannotProceed value = new org.omg.CosNaming.NamingContextPackage.CannotProceed ();
+    // read and discard the repository ID
+    istream.read_string ();
+    value.cxt = org.omg.CosNaming.NamingContextHelper.read (istream);
+    value.rest_of_name = org.omg.CosNaming.NameHelper.read (istream);
+    return value;
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.CannotProceed value)
+  {
+    // write the repository ID
+    ostream.write_string (id ());
+    org.omg.CosNaming.NamingContextHelper.write (ostream, value.cxt);
+    org.omg.CosNaming.NameHelper.write (ostream, value.rest_of_name);
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+/**
+* org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class CannotProceedHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContextPackage.CannotProceed value = null;
+
+  public CannotProceedHolder ()
+  {
+  }
+
+  public CannotProceedHolder (org.omg.CosNaming.NamingContextPackage.CannotProceed initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextPackage.CannotProceedHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/CannotProceedHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,25 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/InvalidName.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class InvalidName extends org.omg.CORBA.UserException
+{
+
+  public InvalidName ()
+  {
+    super(InvalidNameHelper.id());
+  } // ctor
+
+
+  public InvalidName (String $reason)
+  {
+    super(InvalidNameHelper.id() + "  " + $reason);
+  } // ctor
+
+} // class InvalidName

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidName.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,72 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class InvalidNameHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/InvalidName:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.InvalidName that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.InvalidName extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  private static boolean __active = false;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      synchronized (org.omg.CORBA.TypeCode.class)
+      {
+        if (__typeCode == null)
+        {
+          if (__active)
+          {
+            return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+          }
+          __active = true;
+          org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [0];
+          org.omg.CORBA.TypeCode _tcOf_members0 = null;
+          __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.id (), "InvalidName", _members0);
+          __active = false;
+        }
+      }
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.InvalidName read (org.omg.CORBA.portable.InputStream istream)
+  {
+    org.omg.CosNaming.NamingContextPackage.InvalidName value = new org.omg.CosNaming.NamingContextPackage.InvalidName ();
+    // read and discard the repository ID
+    istream.read_string ();
+    return value;
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.InvalidName value)
+  {
+    // write the repository ID
+    ostream.write_string (id ());
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+/**
+* org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class InvalidNameHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContextPackage.InvalidName value = null;
+
+  public InvalidNameHolder ()
+  {
+  }
+
+  public InvalidNameHolder (org.omg.CosNaming.NamingContextPackage.InvalidName initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/InvalidNameHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,25 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotEmpty.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class NotEmpty extends org.omg.CORBA.UserException
+{
+
+  public NotEmpty ()
+  {
+    super(NotEmptyHelper.id());
+  } // ctor
+
+
+  public NotEmpty (String $reason)
+  {
+    super(NotEmptyHelper.id() + "  " + $reason);
+  } // ctor
+
+} // class NotEmpty

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmpty.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,72 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class NotEmptyHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/NotEmpty:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.NotEmpty that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotEmpty extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  private static boolean __active = false;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      synchronized (org.omg.CORBA.TypeCode.class)
+      {
+        if (__typeCode == null)
+        {
+          if (__active)
+          {
+            return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+          }
+          __active = true;
+          org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [0];
+          org.omg.CORBA.TypeCode _tcOf_members0 = null;
+          __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CosNaming.NamingContextPackage.NotEmptyHelper.id (), "NotEmpty", _members0);
+          __active = false;
+        }
+      }
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotEmpty read (org.omg.CORBA.portable.InputStream istream)
+  {
+    org.omg.CosNaming.NamingContextPackage.NotEmpty value = new org.omg.CosNaming.NamingContextPackage.NotEmpty ();
+    // read and discard the repository ID
+    istream.read_string ();
+    return value;
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.NotEmpty value)
+  {
+    // write the repository ID
+    ostream.write_string (id ());
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class NotEmptyHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContextPackage.NotEmpty value = null;
+
+  public NotEmptyHolder ()
+  {
+  }
+
+  public NotEmptyHolder (org.omg.CosNaming.NamingContextPackage.NotEmpty initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextPackage.NotEmptyHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextPackage.NotEmptyHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextPackage.NotEmptyHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotEmptyHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,36 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotFound.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class NotFound extends org.omg.CORBA.UserException
+{
+  public org.omg.CosNaming.NamingContextPackage.NotFoundReason why = null;
+  public org.omg.CosNaming.NameComponent rest_of_name[] = null;
+
+  public NotFound ()
+  {
+    super(NotFoundHelper.id());
+  } // ctor
+
+  public NotFound (org.omg.CosNaming.NamingContextPackage.NotFoundReason _why, org.omg.CosNaming.NameComponent[] _rest_of_name)
+  {
+    super(NotFoundHelper.id());
+    why = _why;
+    rest_of_name = _rest_of_name;
+  } // ctor
+
+
+  public NotFound (String $reason, org.omg.CosNaming.NamingContextPackage.NotFoundReason _why, org.omg.CosNaming.NameComponent[] _rest_of_name)
+  {
+    super(NotFoundHelper.id() + "  " + $reason);
+    why = _why;
+    rest_of_name = _rest_of_name;
+  } // ctor
+
+} // class NotFound

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFound.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,88 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class NotFoundHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/NotFound:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.NotFound that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotFound extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  private static boolean __active = false;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      synchronized (org.omg.CORBA.TypeCode.class)
+      {
+        if (__typeCode == null)
+        {
+          if (__active)
+          {
+            return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+          }
+          __active = true;
+          org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
+          org.omg.CORBA.TypeCode _tcOf_members0 = null;
+          _tcOf_members0 = org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper.type ();
+          _members0[0] = new org.omg.CORBA.StructMember (
+            "why",
+            _tcOf_members0,
+            null);
+          _tcOf_members0 = org.omg.CosNaming.NameComponentHelper.type ();
+          _tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
+          _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.CosNaming.NameHelper.id (), "Name", _tcOf_members0);
+          _members0[1] = new org.omg.CORBA.StructMember (
+            "rest_of_name",
+            _tcOf_members0,
+            null);
+          __typeCode = org.omg.CORBA.ORB.init ().create_exception_tc (org.omg.CosNaming.NamingContextPackage.NotFoundHelper.id (), "NotFound", _members0);
+          __active = false;
+        }
+      }
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotFound read (org.omg.CORBA.portable.InputStream istream)
+  {
+    org.omg.CosNaming.NamingContextPackage.NotFound value = new org.omg.CosNaming.NamingContextPackage.NotFound ();
+    // read and discard the repository ID
+    istream.read_string ();
+    value.why = org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper.read (istream);
+    value.rest_of_name = org.omg.CosNaming.NameHelper.read (istream);
+    return value;
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.NotFound value)
+  {
+    // write the repository ID
+    ostream.write_string (id ());
+    org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper.write (ostream, value.why);
+    org.omg.CosNaming.NameHelper.write (ostream, value.rest_of_name);
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHelper.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class NotFoundHolder implements org.omg.CORBA.portable.Streamable
+{
+  public org.omg.CosNaming.NamingContextPackage.NotFound value = null;
+
+  public NotFoundHolder ()
+  {
+  }
+
+  public NotFoundHolder (org.omg.CosNaming.NamingContextPackage.NotFound initialValue)
+  {
+    value = initialValue;
+  }
+
+  public void _read (org.omg.CORBA.portable.InputStream i)
+  {
+    value = org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read (i);
+  }
+
+  public void _write (org.omg.CORBA.portable.OutputStream o)
+  {
+    org.omg.CosNaming.NamingContextPackage.NotFoundHelper.write (o, value);
+  }
+
+  public org.omg.CORBA.TypeCode _type ()
+  {
+    return org.omg.CosNaming.NamingContextPackage.NotFoundHelper.type ();
+  }
+
+}

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundHolder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,46 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotFoundReason.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/**
+     * 
+     */
+public class NotFoundReason implements org.omg.CORBA.portable.IDLEntity
+{
+  private        int __value;
+  private static int __size = 3;
+  private static org.omg.CosNaming.NamingContextPackage.NotFoundReason[] __array = new org.omg.CosNaming.NamingContextPackage.NotFoundReason [__size];
+
+  public static final int _missing_node = 0;
+  public static final org.omg.CosNaming.NamingContextPackage.NotFoundReason missing_node = new org.omg.CosNaming.NamingContextPackage.NotFoundReason(_missing_node);
+  public static final int _not_context = 1;
+  public static final org.omg.CosNaming.NamingContextPackage.NotFoundReason not_context = new org.omg.CosNaming.NamingContextPackage.NotFoundReason(_not_context);
+  public static final int _not_object = 2;
+  public static final org.omg.CosNaming.NamingContextPackage.NotFoundReason not_object = new org.omg.CosNaming.NamingContextPackage.NotFoundReason(_not_object);
+
+  public int value ()
+  {
+    return __value;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotFoundReason from_int (int value)
+  {
+    if (value >= 0 && value < __size)
+      return __array[value];
+    else
+      throw new org.omg.CORBA.BAD_PARAM ();
+  }
+
+  protected NotFoundReason (int value)
+  {
+    __value = value;
+    __array[__value] = this;
+  }
+} // class NotFoundReason

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReason.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,57 @@
+package org.omg.CosNaming.NamingContextPackage;
+
+
+/**
+* org/omg/CosNaming/NamingContextPackage/NotFoundReasonHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+/**
+     * 
+     */
+abstract public class NotFoundReasonHelper
+{
+  private static String  _id = "IDL:omg.org/CosNaming/NamingContext/NotFoundReason:1.0";
+
+  public static void insert (org.omg.CORBA.Any a, org.omg.CosNaming.NamingContextPackage.NotFoundReason that)
+  {
+    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+    a.type (type ());
+    write (out, that);
+    a.read_value (out.create_input_stream (), type ());
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotFoundReason extract (org.omg.CORBA.Any a)
+  {
+    return read (a.create_input_stream ());
+  }
+
+  private static org.omg.CORBA.TypeCode __typeCode = null;
+  synchronized public static org.omg.CORBA.TypeCode type ()
+  {
+    if (__typeCode == null)
+    {
+      __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper.id (), "NotFoundReason", new String[] { "missing_node", "not_context", "not_object"} );
+    }
+    return __typeCode;
+  }
+
+  public static String id ()
+  {
+    return _id;
+  }
+
+  public static org.omg.CosNaming.NamingContextPackage.NotFoundReason read (org.omg.CORBA.portable.InputStream istream)
+  {
+    return org.omg.CosNaming.NamingContextPackage.NotFoundReason.from_int (istream.read_long ());
+  }
+
+  public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.NamingContextPackage.NotFoundReason value)
+  {
+    ostream.write_long (value.value ());
+  }
+
+}