001 package org.omg.CSIIOP;
002
003 /**
004 * Generated from IDL alias "CompoundSecMechanisms".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:30 AM
008 */
009
010 public final class CompoundSecMechanismsHolder
011 implements org.omg.CORBA.portable.Streamable
012 {
013 public org.omg.CSIIOP.CompoundSecMech[] value;
014
015 public CompoundSecMechanismsHolder ()
016 {
017 }
018 public CompoundSecMechanismsHolder (final org.omg.CSIIOP.CompoundSecMech[] initial)
019 {
020 value = initial;
021 }
022 public org.omg.CORBA.TypeCode _type ()
023 {
024 return CompoundSecMechanismsHelper.type ();
025 }
026 public void _read (final org.omg.CORBA.portable.InputStream in)
027 {
028 value = CompoundSecMechanismsHelper.read (in);
029 }
030 public void _write (final org.omg.CORBA.portable.OutputStream out)
031 {
032 CompoundSecMechanismsHelper.write (out,value);
033 }
034 }