/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.internal.sessions.coordination.corba.sun; /** * org/eclipse/persistence/internal/remotecommand/corba/sun/SunCORBAConnectionHelper.java . * Generated by the IDL-to-Java compiler (portable), version "3.1" * from rcm.idl * Tuesday, March 30, 2004 2:00:14 PM EST */ abstract public class SunCORBAConnectionHelper { private static String _id = "IDL:org/eclipse/persistence/internal/remotecommand/corba/sun/SunCORBAConnection:1.0"; public static void insert(org.omg.CORBA.Any a, org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection that) { org.omg.CORBA.portable.OutputStream out = a.create_output_stream(); a.type(type()); write(out, that); a.read_value(out.create_input_stream(), type()); } public static org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection extract(org.omg.CORBA.Any a) { return read(a.create_input_stream()); } private static org.omg.CORBA.TypeCode __typeCode = null; synchronized public static org.omg.CORBA.TypeCode type() { if (__typeCode == null) { __typeCode = org.omg.CORBA.ORB.init().create_interface_tc(org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnectionHelper.id(), "SunCORBAConnection"); } return __typeCode; } public static String id() { return _id; } public static org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection read(org.omg.CORBA.portable.InputStream istream) { return narrow(istream.read_Object(_SunCORBAConnectionStub.class)); } public static void write(org.omg.CORBA.portable.OutputStream ostream, org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection value) { ostream.write_Object(value); } public static org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection narrow(org.omg.CORBA.Object obj) { if (obj == null) { return null; } else if (obj instanceof org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection) { return (org.eclipse.persistence.internal.sessions.coordination.corba.sun.SunCORBAConnection)obj; } else if (!obj._is_a(id())) { throw new org.omg.CORBA.BAD_PARAM(); } else { org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl)obj)._get_delegate(); org.eclipse.persistence.internal.sessions.coordination.corba.sun._SunCORBAConnectionStub stub = new org.eclipse.persistence.internal.sessions.coordination.corba.sun._SunCORBAConnectionStub(); stub._set_delegate(delegate); return stub; } } }