1 31 32 package org.apache.commons.httpclient.auth; 33 34 import org.apache.commons.httpclient.Credentials; 35 36 62 63 public interface AuthScheme { 64 65 70 String getSchemeName(); 71 72 79 String getParameter(final String name); 80 81 88 String getRealm(); 89 90 106 String getID(); 107 108 127 String authenticate(Credentials credentials, String method, String uri) 128 throws AuthenticationException; 129 130 } 131 | Popular Tags |