use of com.zimbra.cs.service.authenticator.SpnegoAuthenticator in project zm-mailbox by Zimbra.
the class SpnegoFilter method authenticate.
private void authenticate(HttpServletRequest req, HttpServletResponse resp) throws ServiceException {
if (spnegoUserRealm == null) {
throw ServiceException.FAILURE("no spnego user realm", null);
}
SSOAuthenticator authenticator = new SpnegoAuthenticator(req, resp, spnegoUserRealm, error401Page);
authenticator.authenticate();
}
Aggregations