1 package com.sun.corba.se.PortableActivationIDL; 2 3 4 10 11 12 14 public abstract class _ORBProxyImplBase extends org.omg.CORBA.portable.ObjectImpl 15 implements com.sun.corba.se.PortableActivationIDL.ORBProxy, org.omg.CORBA.portable.InvokeHandler 16 { 17 18 public _ORBProxyImplBase () 20 { 21 } 22 23 private static java.util.Hashtable _methods = new java.util.Hashtable (); 24 static 25 { 26 _methods.put ("activate_adapter", new java.lang.Integer (0)); 27 } 28 29 public org.omg.CORBA.portable.OutputStream _invoke (String $method, 30 org.omg.CORBA.portable.InputStream in, 31 org.omg.CORBA.portable.ResponseHandler $rh) 32 { 33 org.omg.CORBA.portable.OutputStream out = null; 34 java.lang.Integer __method = (java.lang.Integer )_methods.get ($method); 35 if (__method == null) 36 throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE); 37 38 switch (__method.intValue ()) 39 { 40 41 47 case 0: { 49 String name[] = org.omg.PortableInterceptor.AdapterNameHelper.read (in); 50 boolean $result = false; 51 $result = this.activate_adapter (name); 52 out = $rh.createReply(); 53 out.write_boolean ($result); 54 break; 55 } 56 57 default: 58 throw new org.omg.CORBA.BAD_OPERATION (0, org.omg.CORBA.CompletionStatus.COMPLETED_MAYBE); 59 } 60 61 return out; 62 } 64 private static String [] __ids = { 66 "IDL:PortableActivationIDL/ORBProxy:1.0"}; 67 68 public String [] _ids () 69 { 70 return (String [])__ids.clone (); 71 } 72 73 74 } | Popular Tags |