org.springframework.security.util
Interface PortMapper

All Known Implementing Classes:
PortMapperImpl

public interface PortMapper

PortMapper implementations provide callers with information about which HTTP ports are associated with which HTTPS ports on the system, and vice versa.

Version:
$Id: PortMapper.java 2217 2007-10-27 00:45:30Z luke_t $
Author:
Ben Alex

Method Summary
 java.lang.Integer lookupHttpPort(java.lang.Integer httpsPort)
          Locates the HTTP port associated with the specified HTTPS port.
 java.lang.Integer lookupHttpsPort(java.lang.Integer httpPort)
          Locates the HTTPS port associated with the specified HTTP port.
 

Method Detail

lookupHttpPort

java.lang.Integer lookupHttpPort(java.lang.Integer httpsPort)
Locates the HTTP port associated with the specified HTTPS port.

Returns null if unknown.

Parameters:
httpsPort -
Returns:
the HTTP port or null if unknown

lookupHttpsPort

java.lang.Integer lookupHttpsPort(java.lang.Integer httpPort)
Locates the HTTPS port associated with the specified HTTP port.

Returns null if unknown.

Parameters:
httpPort -
Returns:
the HTTPS port or null if unknown