org.springframework.security.web.access.channel
Class AbstractRetryEntryPoint

java.lang.Object
  extended by org.springframework.security.web.access.channel.AbstractRetryEntryPoint
All Implemented Interfaces:
ChannelEntryPoint
Direct Known Subclasses:
RetryWithHttpEntryPoint, RetryWithHttpsEntryPoint

public abstract class AbstractRetryEntryPoint
extends Object
implements ChannelEntryPoint

Version:
$Id: AbstractRetryEntryPoint.java 3640 2009-05-04 14:24:54Z ltaylor $
Author:
Luke Taylor

Field Summary
protected  org.apache.commons.logging.Log logger
           
 
Constructor Summary
AbstractRetryEntryPoint(String scheme, int standardPort)
           
 
Method Summary
 void commence(HttpServletRequest req, HttpServletResponse res)
          Commences a secure channel.
protected abstract  Integer getMappedPort(Integer mapFromPort)
           
protected  PortMapper getPortMapper()
           
protected  PortResolver getPortResolver()
           
 void setPortMapper(PortMapper portMapper)
           
 void setPortResolver(PortResolver portResolver)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

logger

protected final org.apache.commons.logging.Log logger
Constructor Detail

AbstractRetryEntryPoint

public AbstractRetryEntryPoint(String scheme,
                               int standardPort)
Method Detail

commence

public void commence(HttpServletRequest req,
                     HttpServletResponse res)
              throws IOException,
                     ServletException
Description copied from interface: ChannelEntryPoint
Commences a secure channel.

Implementations should modify the headers on the ServletResponse as necessary to commence the user agent using the implementation's supported channel type.

Specified by:
commence in interface ChannelEntryPoint
Parameters:
req - that a ChannelProcessor has rejected
res - so that the user agent can begin using a new channel
Throws:
IOException
ServletException

getMappedPort

protected abstract Integer getMappedPort(Integer mapFromPort)

getPortMapper

protected PortMapper getPortMapper()

getPortResolver

protected PortResolver getPortResolver()

setPortMapper

public void setPortMapper(PortMapper portMapper)

setPortResolver

public void setPortResolver(PortResolver portResolver)


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