SSLHelloImpl_Stubpublic final class SSLHelloImpl_Stub extends RemoteStub implements Remote, Hello
Fields Summary |
---|
private static final Operation[] | operations | private static final long | interfaceHash | private static final long | serialVersionUID | private static boolean | useNewInvoke | private static Method | $method_sayHello_0 |
Constructors Summary |
---|
public SSLHelloImpl_Stub()
try {
java.rmi.server.RemoteRef.class.getMethod("invoke",
new java.lang.Class[] {
java.rmi.Remote.class,
java.lang.reflect.Method.class,
java.lang.Object[].class,
long.class
});
useNewInvoke = true;
$method_sayHello_0 = Hello.class.getMethod("sayHello", new java.lang.Class[] {});
} catch (java.lang.NoSuchMethodException e) {
useNewInvoke = false;
}
super();
| public SSLHelloImpl_Stub(RemoteRef ref)
super(ref);
|
Methods Summary |
---|
public java.lang.String | sayHello()
try {
if (useNewInvoke) {
Object $result = ref.invoke(this, $method_sayHello_0, null, 6043973830760146143L);
return ((java.lang.String) $result);
} else {
java.rmi.server.RemoteCall call = ref.newCall((java.rmi.server.RemoteObject) this, operations, 0, interfaceHash);
ref.invoke(call);
java.lang.String $result;
try {
java.io.ObjectInput in = call.getInputStream();
$result = (java.lang.String) in.readObject();
} catch (java.io.IOException e) {
throw new java.rmi.UnmarshalException("error unmarshalling return", e);
} catch (java.lang.ClassNotFoundException e) {
throw new java.rmi.UnmarshalException("error unmarshalling return", e);
} finally {
ref.done(call);
}
return $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);
}
|
|