001 package org.omg.IIOP;
002
003
004 /**
005 * org/omg/IIOP/ListenPoint.java .
006 * Generated by the IDL-to-Java compiler (portable), version "3.2"
007 * from /home/iurt/rpm/BUILD/geronimo-spec-corba/src/main/idl/IIOP.idl
008 * Saturday, November 26, 2011 9:53:36 PM UTC
009 */
010
011 public final class ListenPoint implements org.omg.CORBA.portable.IDLEntity
012 {
013 public String host = null;
014 public short port = (short)0;
015
016 public ListenPoint ()
017 {
018 } // ctor
019
020 public ListenPoint (String _host, short _port)
021 {
022 host = _host;
023 port = _port;
024 } // ctor
025
026 } // class ListenPoint