1 package org.omg.SecurityLevel2;2 3 final public class CredentialsHolder4 implements org.omg.CORBA.portable.Streamable 5 {6 public Credentials value;7 8 public CredentialsHolder(){}9 10 public CredentialsHolder(Credentials c)11 {12 value = c;13 }14 15 public org.omg.CORBA.TypeCode _type()16 {17 throw new org.omg.CORBA.MARSHAL ();18 }19 20 public void _read(org.omg.CORBA.portable.InputStream in)21 {22 throw new org.omg.CORBA.MARSHAL ();23 24 }25 26 public void _write(org.omg.CORBA.portable.OutputStream out)27 {28 throw new org.omg.CORBA.MARSHAL ();29 }30 31 }32 33 34