blob: d4b0a51344ec82f4c2dbd9ced443bc51eda5115b [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// 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;
}
}
}