1 7 8 package com.sun.corba.se.spi.legacy.connection; 9 10 13 public interface LegacyServerSocketEndPointInfo 14 { 15 18 public String getType(); 19 20 21 26 public String getHostName(); 27 28 public int getPort(); 29 30 34 public int getLocatorPort(); 35 public void setLocatorPort(int port); 36 37 40 public static final String DEFAULT_ENDPOINT = "DEFAULT_ENDPOINT"; 41 public static final String BOOT_NAMING = "BOOT_NAMING"; 42 public static final String NO_NAME = "NO_NAME"; 43 44 public String getName(); 45 } 46 47 | Popular Tags |