| org.acegisecurity.util.PortMapper
All known Subclasses: org.acegisecurity.util.PortMapperImpl,
PortMapper | public interface PortMapper (Code) | | PortMapper implementations provide callers with information
about which HTTP ports are associated with which HTTPS ports on the system,
and vice versa.
author: Ben Alex version: $Id: PortMapper.java 1784 2007-02-24 21:00:24Z luke_t $ |
lookupHttpPort | Integer lookupHttpPort(Integer httpsPort)(Code) | | Locates the HTTP port associated with the specified HTTPS port. Returns null if unknown.
Parameters: httpsPort - the HTTP port or null if unknown |
lookupHttpsPort | Integer lookupHttpsPort(Integer httpPort)(Code) | | Locates the HTTPS port associated with the specified HTTP port. Returns null if unknown.
Parameters: httpPort - the HTTPS port or null if unknown |
|
|