package com.vci.corba.auth2;
|
|
/**
|
* Generated from IDL interface "Auth2Service".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public final class Auth2ServiceHolder implements org.omg.CORBA.portable.Streamable{
|
public Auth2Service value;
|
public Auth2ServiceHolder()
|
{
|
}
|
public Auth2ServiceHolder (final Auth2Service initial)
|
{
|
value = initial;
|
}
|
public org.omg.CORBA.TypeCode _type()
|
{
|
return Auth2ServiceHelper.type();
|
}
|
public void _read (final org.omg.CORBA.portable.InputStream in)
|
{
|
value = Auth2ServiceHelper.read (in);
|
}
|
public void _write (final org.omg.CORBA.portable.OutputStream _out)
|
{
|
Auth2ServiceHelper.write (_out,value);
|
}
|
}
|