fix wrong authtype

This commit is contained in:
Sebastian Sdorra
2011-04-15 18:37:51 +02:00
parent dca9985dac
commit ff5668ab9f

View File

@@ -29,6 +29,8 @@
*
*/
package sonia.scm.web.filter;
//~--- non-JDK imports --------------------------------------------------------
@@ -65,6 +67,20 @@ public class SecurityHttpServletRequestWrapper extends HttpServletRequestWrapper
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @return
*/
@Override
public String getAuthType()
{
return (user != null)
? BASIC_AUTH
: null;
}
/**
* Method description
*