Uses of Class
com.netscape.certsrv.authorization.EAuthzInternalError

Packages that use EAuthzInternalError
com.netscape.certsrv.authorization   
com.netscape.cms.authorization   
 

Uses of EAuthzInternalError in com.netscape.certsrv.authorization
 

Methods in com.netscape.certsrv.authorization that throw EAuthzInternalError
 AuthzToken IAuthzManager.authorize(IAuthToken authToken, java.lang.String expression)
           
 AuthzToken IAuthzManager.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          Check if the user is authorized to perform the given operation on the given resource.
 

Uses of EAuthzInternalError in com.netscape.cms.authorization
 

Methods in com.netscape.cms.authorization that throw EAuthzInternalError
 AuthzToken BasicAclAuthz.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          check the authorization permission for the user associated with authToken on operation Example: For example, if UsrGrpAdminServlet needs to authorize the caller it would do be done in the following fashion: try { authzTok = mAuthz.authorize("DirACLBasedAuthz", authToken, RES_GROUP, "read"); } catch (EBaseException e) { log(ILogger.LL_FAILURE, "authorize call: "+ e.toString()); }
 AuthzToken DirAclAuthz.authorize(IAuthToken authToken, java.lang.String resource, java.lang.String operation)
          check the authorization permission for the user associated with authToken on operation Example: For example, if UsrGrpAdminServlet needs to authorize the caller it would do be done in the following fashion: try { authzTok = mAuthz.authorize("DirAclAuthz", authToken, RES_GROUP, "read"); } catch (EBaseException e) { log(ILogger.LL_FAILURE, "authorize call: "+ e.toString()); }