1 19 20 package com.sslexplorer.security; 21 22 import org.apache.commons.logging.Log; 23 import org.apache.commons.logging.LogFactory; 24 25 31 public class HTTPAuthenticationModule extends AbstractHTTPAuthenticationModule { 32 33 final static Log log = LogFactory.getLog(HTTPAuthenticationModule.class); 34 35 38 public final static String DEFAULT_REALM = "SSL-Explorer"; 39 42 public static final String MODULE_NAME = "HTTP"; 43 44 47 public HTTPAuthenticationModule() { 48 super(MODULE_NAME, true, DEFAULT_REALM); 49 } 50 51 56 public String getInclude() { 57 return "/WEB-INF/jsp/auth/httpAuth.jspf"; 58 } 59 } | Popular Tags |