org.apache.catalina.authenticator.AuthenticatorBase.unregister()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中org.apache.catalina.authenticator.AuthenticatorBase.unregister()方法的一些代码示例,展示了AuthenticatorBase.unregister()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AuthenticatorBase.unregister()方法的具体详情如下:
包路径:org.apache.catalina.authenticator.AuthenticatorBase
类名称:AuthenticatorBase
方法名:unregister

AuthenticatorBase.unregister介绍

[英]Register an authenticated Principal and authentication type in our request, in the current session (if there is one), and with our SingleSignOn valve, if there is one. Set the appropriate cookie to be returned.
[中]在当前会话(如果有)和SingleSignOn阀(如果有)中,在请求中注册经过身份验证的主体和身份验证类型。设置要返回的相应cookie。

代码示例

代码示例来源:origin: jboss.web/jbossweb

public void logout(Request request)
  throws ServletException {
  unregister(request, request.getResponseFacade());
}

代码示例来源:origin: org.jboss.web/jbossweb

public void logout(Request request)
  throws ServletException {
  unregister(request, request.getResponseFacade());
}

相关文章

微信公众号

最新文章

更多