_InitialNameServiceImplBasepublic abstract class _InitialNameServiceImplBase extends org.omg.CORBA.portable.ObjectImpl implements com.sun.corba.se.spi.activation.InitialNameService, org.omg.CORBA.portable.InvokeHandlercom/sun/corba/se/spi/activation/_InitialNameServiceImplBase.java .
Generated by the IDL-to-Java compiler (portable), version "3.2"
from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
Tuesday, June 10, 2008 1:46:33 AM GMT-08:00 |
Fields Summary |
---|
private static Hashtable | _methods | private static String[] | __ids |
Constructors Summary |
---|
public _InitialNameServiceImplBase()
|
Methods Summary |
---|
public java.lang.String[] | _ids()
return (String[])__ids.clone ();
| public org.omg.CORBA.portable.OutputStream | _invoke(java.lang.String $method, org.omg.CORBA.portable.InputStream in, org.omg.CORBA.portable.ResponseHandler $rh)
_methods.put ("bind", new java.lang.Integer (0));
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 ())
{
// bind initial name
case 0: // activation/InitialNameService/bind
{
try {
String name = in.read_string ();
org.omg.CORBA.Object obj = org.omg.CORBA.ObjectHelper.read (in);
boolean isPersistant = in.read_boolean ();
this.bind (name, obj, isPersistant);
out = $rh.createReply();
} catch (com.sun.corba.se.spi.activation.InitialNameServicePackage.NameAlreadyBound $ex) {
out = $rh.createExceptionReply ();
com.sun.corba.se.spi.activation.InitialNameServicePackage.NameAlreadyBoundHelper.write (out, $ex);
}
break;
}
default:
throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE);
}
return out;
|
|