001 package org.omg.CSIIOP; 002 003 004 /** 005 * org/omg/CSIIOP/TransportAddress.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/CSIIOP.idl 008 * Saturday, September 22, 2012 10:56:38 AM CEST 009 */ 010 011 public final class TransportAddress implements org.omg.CORBA.portable.IDLEntity 012 { 013 public String host_name = null; 014 public short port = (short)0; 015 016 public TransportAddress () 017 { 018 } // ctor 019 020 public TransportAddress (String _host_name, short _port) 021 { 022 host_name = _host_name; 023 port = _port; 024 } // ctor 025 026 } // class TransportAddress