1 17 package org.apache.ldap.server.authn; 18 19 import java.util.Enumeration ; 20 21 27 public interface AuthenticatorConfig { 28 29 32 public String getAuthenticatorName(); 33 34 37 public String getInitParameter( String name ); 38 39 42 public Enumeration getInitParameterNames(); 43 44 47 public AuthenticatorContext getAuthenticatorContext(); 48 } 49 | Popular Tags |