1 package org.omg.SecurityLevel2; 2 public class CredentialsListHelper 3 implements org.omg.CORBA.portable.Helper  4 { 5 private static org.omg.CORBA.TypeCode _type = org.omg.CORBA.ORB.init().create_sequence_tc(0, org.omg.CORBA.ORB.init().create_interface_tc( "IDL:omg.org/SecurityLevel2/Credentials:1.0", "Credentials")); 6 public CredentialsListHelper () 7 { 8 } 9 public static void insert(org.omg.CORBA.Any any, org.omg.SecurityLevel2.Credentials[] s) 10 { 11 any.type(type()); 12 write( any.create_output_stream(),s); 13 } 14 public static org.omg.SecurityLevel2.Credentials[] extract(org.omg.CORBA.Any any) 15 { 16 return read(any.create_input_stream()); 17 } 18 public static org.omg.CORBA.TypeCode type() 19 { 20 return _type; 21 } 22 public String get_id() 23 { 24 return id(); 25 } 26 public org.omg.CORBA.TypeCode get_type() 27 { 28 return type(); 29 } 30 public void write_Object(org.omg.CORBA.portable.OutputStream out, java.lang.Object obj) 31 { 32 throw new RuntimeException (" not implemented"); 33 } 34 public java.lang.Object read_Object(org.omg.CORBA.portable.InputStream in) 35 { 36 throw new RuntimeException (" not implemented"); 37 } 38 public static String id() 39 { 40 return "IDL:omg.org/SecurityLevel2/CredentialsList:1.0"; 41 } 42 public static org.omg.SecurityLevel2.Credentials[] read(org.omg.CORBA.portable.InputStream in) 43 { 44 throw new org.omg.CORBA.MARSHAL (); 45 } 46 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.SecurityLevel2.Credentials[] s) 47 { 48 throw new org.omg.CORBA.MARSHAL (); 49 } 50 } 51 52 53
| Popular Tags
|