001 package org.omg.IIOP;
002
003 /**
004 * Generated from IDL struct "ListenPoint".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:32 AM
008 */
009
010 public final class ListenPoint
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public ListenPoint(){}
014 public java.lang.String host = "";
015 public short port;
016 public ListenPoint(java.lang.String host, short port)
017 {
018 this.host = host;
019 this.port = port;
020 }
021 }