RMIServerImpl_Stubpublic final class RMIServerImpl_Stub extends RemoteStub implements RMIServer
Fields Summary |
---|
private static final long | serialVersionUID | private static Method | $method_getVersion_0 | private static Method | $method_newClient_1 |
Constructors Summary |
---|
public RMIServerImpl_Stub(RemoteRef ref)
try {
$method_getVersion_0 = javax.management.remote.rmi.RMIServer.class.getMethod("getVersion", new java.lang.Class[] {});
$method_newClient_1 = javax.management.remote.rmi.RMIServer.class.getMethod("newClient", new java.lang.Class[] {java.lang.Object.class});
} catch (java.lang.NoSuchMethodException e) {
throw new java.lang.NoSuchMethodError(
"stub class initialization failed");
}
super(ref);
|
Methods Summary |
---|
public java.lang.String | getVersion()
try {
Object $result = ref.invoke(this, $method_getVersion_0, null, -8081107751519807347L);
return ((java.lang.String) $result);
} catch (java.lang.RuntimeException e) {
throw e;
} catch (java.rmi.RemoteException e) {
throw e;
} catch (java.lang.Exception e) {
throw new java.rmi.UnexpectedException("undeclared checked exception", e);
}
| public javax.management.remote.rmi.RMIConnection | newClient(java.lang.Object $param_Object_1)
try {
Object $result = ref.invoke(this, $method_newClient_1, new java.lang.Object[] {$param_Object_1}, -1089742558549201240L);
return ((javax.management.remote.rmi.RMIConnection) $result);
} catch (java.lang.RuntimeException e) {
throw e;
} catch (java.io.IOException e) {
throw e;
} catch (java.lang.Exception e) {
throw new java.rmi.UnexpectedException("undeclared checked exception", e);
}
|
|