package com.vci.corba.auth2.data; /** * Generated from IDL alias "GrandValueArray". * * @author JacORB IDL compiler V 3.9 * @version generated at 2022-12-23 15:42:24 */ public final class GrandValueArrayHolder implements org.omg.CORBA.portable.Streamable { public com.vci.corba.auth2.data.GrandValue[] value; public GrandValueArrayHolder () { } public GrandValueArrayHolder (final com.vci.corba.auth2.data.GrandValue[] initial) { value = initial; } public org.omg.CORBA.TypeCode _type () { return GrandValueArrayHelper.type (); } public void _read (final org.omg.CORBA.portable.InputStream in) { value = GrandValueArrayHelper.read (in); } public void _write (final org.omg.CORBA.portable.OutputStream out) { GrandValueArrayHelper.write (out,value); } }