001 package org.omg.Security; 002 003 004 /** 005 * org/omg/Security/OptionsDirectionPairListHolder.java . 006 * Generated by the IDL-to-Java compiler (portable), version "3.2" 007 * from /builddir/build/BUILD/geronimo-specs-1.6/geronimo-spec-corba/src/main/idl/Security.idl 008 * Monday, June 18, 2012 10:36:15 AM CEST 009 */ 010 011 public final class OptionsDirectionPairListHolder implements org.omg.CORBA.portable.Streamable 012 { 013 public org.omg.Security.OptionsDirectionPair value[] = null; 014 015 public OptionsDirectionPairListHolder () 016 { 017 } 018 019 public OptionsDirectionPairListHolder (org.omg.Security.OptionsDirectionPair[] initialValue) 020 { 021 value = initialValue; 022 } 023 024 public void _read (org.omg.CORBA.portable.InputStream i) 025 { 026 value = org.omg.Security.OptionsDirectionPairListHelper.read (i); 027 } 028 029 public void _write (org.omg.CORBA.portable.OutputStream o) 030 { 031 org.omg.Security.OptionsDirectionPairListHelper.write (o, value); 032 } 033 034 public org.omg.CORBA.TypeCode _type () 035 { 036 return org.omg.Security.OptionsDirectionPairListHelper.type (); 037 } 038 039 }