1 package com.sun.corba.se.spi.activation; 2 3 4 10 11 public final class EndPointInfo implements org.omg.CORBA.portable.IDLEntity  12 { 13 public String endpointType = null; 14 public int port = (int)0; 15 16 public EndPointInfo () 17 { 18 } 20 public EndPointInfo (String _endpointType, int _port) 21 { 22 endpointType = _endpointType; 23 port = _port; 24 } 26 } | Popular Tags |