Package rogatkin.app.remote

Examples of rogatkin.app.remote.naming_exception


        System.err.printf("Remote LOOKUP1 %s%n", name);
      // TODO name.length() == 0 -> return this
      Object result = directory.get(name.trim());
      if (result instanceof org.omg.CORBA.Object)
        return (org.omg.CORBA.Object) result;
      throw new naming_exception();
    }
View Full Code Here


          rootPoa.deactivate_object(rootPoa.reference_to_id((org.omg.CORBA.Object) result));
        } catch (org.omg.CORBA.UserException ce) {

        }
      } else
        throw new naming_exception();
    }
View Full Code Here

        System.err.printf("Remote bind %s%n", name);
      synchronized (directory) {
        if (directory.containsKey(name.trim()) == false)
          directory.put(name.trim(), o);
        else
          throw new naming_exception();
      }
    }
View Full Code Here

TOP

Related Classes of rogatkin.app.remote.naming_exception

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.