1 4 package javax.management.remote.rmi; 5 6 public final class RMIServerImpl_Stub 7 extends java.rmi.server.RemoteStub 8 implements javax.management.remote.rmi.RMIServer 9 { 10 private static final long serialVersionUID = 2; 11 12 private static java.lang.reflect.Method $method_getVersion_0; 13 private static java.lang.reflect.Method $method_newClient_1; 14 15 static { 16 try { 17 $method_getVersion_0 = javax.management.remote.rmi.RMIServer .class.getMethod("getVersion", new java.lang.Class [] {}); 18 $method_newClient_1 = javax.management.remote.rmi.RMIServer .class.getMethod("newClient", new java.lang.Class [] {java.lang.Object .class}); 19 } catch (java.lang.NoSuchMethodException e) { 20 throw new java.lang.NoSuchMethodError ( 21 "stub class initialization failed"); 22 } 23 } 24 25 public RMIServerImpl_Stub(java.rmi.server.RemoteRef ref) { 27 super(ref); 28 } 29 30 32 public java.lang.String getVersion() 34 throws java.rmi.RemoteException 35 { 36 try { 37 Object $result = ref.invoke(this, $method_getVersion_0, null, -8081107751519807347L); 38 return ((java.lang.String ) $result); 39 } catch (java.lang.RuntimeException e) { 40 throw e; 41 } catch (java.rmi.RemoteException e) { 42 throw e; 43 } catch (java.lang.Exception e) { 44 throw new java.rmi.UnexpectedException ("undeclared checked exception", e); 45 } 46 } 47 48 public javax.management.remote.rmi.RMIConnection newClient(java.lang.Object $param_Object_1) 50 throws java.io.IOException 51 { 52 try { 53 Object $result = ref.invoke(this, $method_newClient_1, new java.lang.Object [] {$param_Object_1}, -1089742558549201240L); 54 return ((javax.management.remote.rmi.RMIConnection ) $result); 55 } catch (java.lang.RuntimeException e) { 56 throw e; 57 } catch (java.io.IOException e) { 58 throw e; 59 } catch (java.lang.Exception e) { 60 throw new java.rmi.UnexpectedException ("undeclared checked exception", e); 61 } 62 } 63 } 64 | Popular Tags |