1 23 24 package com.sun.enterprise.security.jauth; 25 26 77 public interface ServerAuthContext { 78 79 107 void validateRequest(AuthParam param, 108 javax.security.auth.Subject subject, 109 java.util.Map sharedState) 110 throws AuthException; 111 112 132 void secureResponse(AuthParam param, 133 javax.security.auth.Subject subject, 134 java.util.Map sharedState) 135 throws AuthException; 136 137 152 void disposeSubject(javax.security.auth.Subject subject, 153 java.util.Map sharedState) 154 throws AuthException; 155 156 180 boolean managesSessions(java.util.Map sharedState) 181 throws AuthException; 182 183 } 184 | Popular Tags |