Interface LegacyServerSocketEndPointInfo
-
- All Known Implementing Classes:
AcceptorAcceptOnlyImpl,AcceptorBase,AcceptorImpl,AcceptorLazyImpl,EndPointInfoImpl,SocketFactoryAcceptorImpl
public interface LegacyServerSocketEndPointInfoLegacyServerSocketEndPointInfo is an abstraction of a port.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringBOOT_NAMINGstatic java.lang.StringDEFAULT_ENDPOINTstatic java.lang.StringNO_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetHostName()Get the host name of this end point.intgetLocatorPort()The ORBD's proxy port of this end point.java.lang.StringgetName()intgetPort()java.lang.StringgetType()e.g.: "CLEAR_TEXT", "SSL", ...voidsetLocatorPort(int port)
-
-
-
Field Detail
-
DEFAULT_ENDPOINT
static final java.lang.String DEFAULT_ENDPOINT
- See Also:
- Constant Field Values
-
BOOT_NAMING
static final java.lang.String BOOT_NAMING
- See Also:
- Constant Field Values
-
NO_NAME
static final java.lang.String NO_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
java.lang.String getType()
e.g.: "CLEAR_TEXT", "SSL", ...- Returns:
- type
-
getHostName
java.lang.String getHostName()
Get the host name of this end point. Subcontracts must use this instead of InetAddress.getHostName() because this would take into account the value of the ORBServerHost property.- Returns:
- the host name
-
getPort
int getPort()
-
getLocatorPort
int getLocatorPort()
The ORBD's proxy port of this end point. Note: Pre-ORT "port-exchange" model.- Returns:
- proxy port
-
setLocatorPort
void setLocatorPort(int port)
-
getName
java.lang.String getName()
-
-