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 ServerAuth 39 { 40 48 public void cleanSubject(Subject subject, Map sharedState) 49 throws AuthException; 50 51 82 public AuthStatus secureResponse(AuthParam authParam, Subject service, Map sharedState) 83 throws AuthException; 84 85 127 public AuthStatus validateRequest(AuthParam authParam, Subject client, 128 Subject service, Map sharedState) throws AuthException; 129 } 130 | Popular Tags |