1 19 20 package com.sslexplorer.security; 21 22 23 30 public class EmbeddedClientAuthenticationModule extends AbstractPasswordAuthenticationModule { 31 32 35 public static final String MODULE_NAME = "EmbeddedClient"; 36 37 40 public EmbeddedClientAuthenticationModule() { 41 super(MODULE_NAME, true); 42 } 43 44 49 public String getInclude() { 50 return null; 51 } 52 } 53 | Popular Tags |