org.springframework.security.web
Interface PortResolver

All Known Implementing Classes:
PortResolverImpl

public interface PortResolver

A PortResolver determines the port a web request was received on.

This interface is necessary because ServletRequest.getServerPort() may not return the correct port in certain circumstances. For example, if the browser does not construct the URL correctly after a redirect.

Version:
$Id: PortResolver.java 3543 2009-03-26 07:18:36Z ltaylor $
Author:
Ben Alex

Method Summary
 int getServerPort(ServletRequest request)
          Indicates the port the ServletRequest was received on.
 

Method Detail

getServerPort

int getServerPort(ServletRequest request)
Indicates the port the ServletRequest was received on.

Parameters:
request - that the method should lookup the port for
Returns:
the port the request was received on


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.