blob: 9b3a0655da5a4c9a79c0327ba52b5af1b00f5efc [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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.sessions.remote.corba.sun;
/**
* INTERNAL:
* org/eclipse/persistence/remote/corba/sun/CORBARemoteSessionControllerHelper.java
* Generated by the IDL-to-Java compiler (portable), version "3.0"
* from CorbaRemoteSessionControllerSun.idl
* Monday, November 19, 2001 1:51:44 o'clock PM EST
*/
abstract public class CORBARemoteSessionControllerHelper {
private static String _id = "IDL:org/eclipse/persistence/remote/corba/sun/CORBARemoteSessionController:1.0";
/**
* Default constructor.
*/
public CORBARemoteSessionControllerHelper() {
}
public static void insert(org.omg.CORBA.Any a, org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController 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.sessions.remote.corba.sun.CORBARemoteSessionController 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.sessions.remote.corba.sun.CORBARemoteSessionControllerHelper.id(), "CORBARemoteSessionController");
}
return __typeCode;
}
public static String id() {
return _id;
}
public static org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController read(org.omg.CORBA.portable.InputStream istream) {
return narrow(istream.read_Object(_CORBARemoteSessionControllerStub.class));
}
public static void write(org.omg.CORBA.portable.OutputStream ostream, org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController value) {
ostream.write_Object(value);
}
public static org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController narrow(org.omg.CORBA.Object obj) {
if (obj == null) {
return null;
} else if (obj instanceof org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController) {
return (org.eclipse.persistence.sessions.remote.corba.sun.CORBARemoteSessionController)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();
return new org.eclipse.persistence.sessions.remote.corba.sun._CORBARemoteSessionControllerStub(delegate);
}
}
}