public static void write(
     org.omg.CORBA.portable.OutputStream ostream,
     com.sun.corba.se.spi.activation.EndPointInfo[] value) {
   ostream.write_long(value.length);
   for (int _i0 = 0; _i0 < value.length; ++_i0)
     com.sun.corba.se.spi.activation.EndPointInfoHelper.write(ostream, value[_i0]);
 }
 public static com.sun.corba.se.spi.activation.EndPointInfo[] read(
     org.omg.CORBA.portable.InputStream istream) {
   com.sun.corba.se.spi.activation.EndPointInfo value[] = null;
   int _len0 = istream.read_long();
   value = new com.sun.corba.se.spi.activation.EndPointInfo[_len0];
   for (int _o1 = 0; _o1 < value.length; ++_o1)
     value[_o1] = com.sun.corba.se.spi.activation.EndPointInfoHelper.read(istream);
   return value;
 }
 public static synchronized org.omg.CORBA.TypeCode type() {
   if (__typeCode == null) {
     __typeCode = com.sun.corba.se.spi.activation.EndPointInfoHelper.type();
     __typeCode = org.omg.CORBA.ORB.init().create_sequence_tc(0, __typeCode);
     __typeCode =
         org.omg
             .CORBA
             .ORB
             .init()
             .create_alias_tc(
                 com.sun.corba.se.spi.activation.EndpointInfoListHelper.id(),
                 "EndpointInfoList",
                 __typeCode);
   }
   return __typeCode;
 }
 public static synchronized org.omg.CORBA.TypeCode type() {
   if (__typeCode == null) {
     synchronized (org.omg.CORBA.TypeCode.class) {
       if (__typeCode == null) {
         if (__active) {
           return org.omg.CORBA.ORB.init().create_recursive_tc(_id);
         }
         __active = true;
         org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember[2];
         org.omg.CORBA.TypeCode _tcOf_members0 = null;
         _tcOf_members0 = org.omg.CORBA.ORB.init().create_string_tc(0);
         _members0[0] = new org.omg.CORBA.StructMember("hostname", _tcOf_members0, null);
         _tcOf_members0 = com.sun.corba.se.spi.activation.EndPointInfoHelper.type();
         _tcOf_members0 = org.omg.CORBA.ORB.init().create_sequence_tc(0, _tcOf_members0);
         _tcOf_members0 =
             org.omg
                 .CORBA
                 .ORB
                 .init()
                 .create_alias_tc(
                     com.sun.corba.se.spi.activation.EndpointInfoListHelper.id(),
                     "EndpointInfoList",
                     _tcOf_members0);
         _members0[1] = new org.omg.CORBA.StructMember("ports", _tcOf_members0, null);
         __typeCode =
             org.omg
                 .CORBA
                 .ORB
                 .init()
                 .create_struct_tc(
                     com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORBHelper
                         .id(),
                     "ServerLocationPerORB",
                     _members0);
         __active = false;
       }
     }
   }
   return __typeCode;
 }