1 23 24 package com.sun.enterprise.security.jauth; 25 26 72 public interface ClientAuthContext { 73 74 97 void secureRequest(AuthParam param, 98 javax.security.auth.Subject subject, 99 java.util.Map sharedState) 100 throws AuthException; 101 102 123 void validateResponse(AuthParam param, 124 javax.security.auth.Subject subject, 125 java.util.Map sharedState) 126 throws AuthException; 127 128 143 void disposeSubject(javax.security.auth.Subject subject, 144 java.util.Map sharedState) 145 throws AuthException; 146 } 147 | Popular Tags |