1 19 20 package com.sslexplorer.security; 21 22 23 30 public class WebDAVAuthenticationModule extends AbstractHTTPAuthenticationModule { 31 32 35 public static final String MODULE_NAME = "WebDAV"; 36 37 40 public final static String DEFAULT_REALM = "SSL-Explorer via WebDAV"; 41 42 45 public WebDAVAuthenticationModule() { 46 super(MODULE_NAME, true, DEFAULT_REALM); 47 } 48 49 54 public String getInclude() { 55 return null; 56 } 57 } 58 | Popular Tags |