/* * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ // Stub class generated by rmic, do not edit. // Contents subject to change without notice. import java.io.Serializable; import java.rmi.Remote; import java.rmi.RemoteException; import java.rmi.UnexpectedException; import javax.rmi.CORBA.Stub; import javax.rmi.CORBA.Util; import org.omg.CORBA.ORB; import org.omg.CORBA.SystemException; import org.omg.CORBA.portable.ApplicationException; import org.omg.CORBA.portable.InputStream; import org.omg.CORBA.portable.OutputStream; import org.omg.CORBA.portable.RemarshalException; import org.omg.CORBA.portable.ResponseHandler; import org.omg.CORBA.portable.ServantObject; public class _HelloInterface_Stub extends Stub implements HelloInterface { private static final String[] _type_ids = { "RMI:HelloInterface:0000000000000000" }; public String[] _ids() { return (String[]) _type_ids.clone(); } public Test3 sayHelloWithTest3(Test3 arg0) throws java.rmi.RemoteException { if (!Util.isLocal(this)) { try { org.omg.CORBA_2_3.portable.InputStream in = null; try { org.omg.CORBA_2_3.portable.OutputStream out = (org.omg.CORBA_2_3.portable.OutputStream) _request("sayHelloWithTest3", true); out.write_value(arg0,Test3.class); in = (org.omg.CORBA_2_3.portable.InputStream)_invoke(out); return (Test3) in.read_value(Test3.class); } catch (ApplicationException ex) { in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); String $_id = in.read_string(); throw new UnexpectedException($_id); } catch (RemarshalException ex) { return sayHelloWithTest3(arg0); } finally { _releaseReply(in); } } catch (SystemException ex) { throw Util.mapSystemException(ex); } } else { ServantObject so = _servant_preinvoke("sayHelloWithTest3",HelloInterface.class); if (so == null) { return sayHelloWithTest3(arg0); } try { Test3 arg0Copy = (Test3) Util.copyObject(arg0,_orb()); Test3 result = ((HelloInterface)so.servant).sayHelloWithTest3(arg0Copy); return (Test3)Util.copyObject(result,_orb()); } catch (Throwable ex) { Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); throw Util.wrapException(exCopy); } finally { _servant_postinvoke(so); } } } }