1 22 package javax.security.auth.message; 23 24 import java.util.Map ; 25 26 import javax.security.auth.Subject ; 27 28 30 38 public interface ClientAuth 39 { 40 50 public AuthStatus cleanSubject( Subject subject, Map sharedState) 51 throws AuthException; 52 53 91 public AuthStatus secureRequest(AuthParam authParam,Subject client, Map sharedState) 92 throws AuthException; 93 94 133 public AuthStatus validateResponse(AuthParam authParam, Subject client, 134 Subject service, Map sharedState) 135 throws AuthException; 136 } 137 | Popular Tags |