Javadoc typo.

This commit is contained in:
Luke Taylor 2007-11-24 19:45:47 +00:00
parent f4ea415844
commit 31b65dde52
1 changed files with 25 additions and 26 deletions

View File

@ -15,15 +15,19 @@
package org.springframework.security.ui.ntlm; package org.springframework.security.ui.ntlm;
import java.io.IOException; import org.springframework.security.Authentication;
import java.net.UnknownHostException; import org.springframework.security.AuthenticationCredentialsNotFoundException;
import java.util.Enumeration; import org.springframework.security.AuthenticationException;
import java.util.Properties; import org.springframework.security.AuthenticationManager;
import org.springframework.security.BadCredentialsException;
import javax.servlet.FilterChain; import org.springframework.security.InsufficientAuthenticationException;
import javax.servlet.http.HttpServletRequest; import org.springframework.security.context.SecurityContextHolder;
import javax.servlet.http.HttpServletResponse; import org.springframework.security.providers.UsernamePasswordAuthenticationToken;
import javax.servlet.http.HttpSession; import org.springframework.security.providers.anonymous.AnonymousAuthenticationToken;
import org.springframework.security.ui.WebAuthenticationDetails;
import org.springframework.security.ui.webapp.AuthenticationProcessingFilter;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
import jcifs.Config; import jcifs.Config;
import jcifs.UniAddress; import jcifs.UniAddress;
@ -36,22 +40,17 @@ import jcifs.smb.SmbAuthException;
import jcifs.smb.SmbException; import jcifs.smb.SmbException;
import jcifs.smb.SmbSession; import jcifs.smb.SmbSession;
import jcifs.util.Base64; import jcifs.util.Base64;
import org.springframework.security.Authentication;
import org.springframework.security.AuthenticationCredentialsNotFoundException;
import org.springframework.security.AuthenticationException;
import org.springframework.security.AuthenticationManager;
import org.springframework.security.BadCredentialsException;
import org.springframework.security.InsufficientAuthenticationException;
import org.springframework.security.context.SecurityContextHolder;
import org.springframework.security.providers.UsernamePasswordAuthenticationToken;
import org.springframework.security.providers.anonymous.AnonymousAuthenticationToken;
import org.springframework.security.ui.WebAuthenticationDetails;
import org.springframework.security.ui.webapp.AuthenticationProcessingFilter;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert; import javax.servlet.FilterChain;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
import java.net.UnknownHostException;
import java.util.Enumeration;
import java.util.Properties;
/** /**
* A clean-room implementation for Spring Security of an NTLM HTTP filter * A clean-room implementation for Spring Security of an NTLM HTTP filter
@ -59,7 +58,7 @@ import org.springframework.util.Assert;
* <p> * <p>
* NTLM is a Microsoft-developed protocol providing single sign-on capabilities * NTLM is a Microsoft-developed protocol providing single sign-on capabilities
* to web applications and other integrated applications. It allows a web * to web applications and other integrated applications. It allows a web
* server to automatcially discover the username of a browser client when that * server to automatically discover the username of a browser client when that
* client is logged into a Windows domain and is using an NTLM-aware browser. * client is logged into a Windows domain and is using an NTLM-aware browser.
* A web application can then reuse the user's Windows credentials without * A web application can then reuse the user's Windows credentials without
* having to ask for them again. * having to ask for them again.
@ -495,4 +494,4 @@ public class NtlmProcessingFilter extends HttpFilter implements InitializingBean
return SmbSession.getChallenge(dcAddress); return SmbSession.getChallenge(dcAddress);
} }
} // End NtlmProcessingFilter }