本文整理了Java中javax.servlet.http.HttpServletRequestWrapper.authenticate()
方法的一些代码示例,展示了HttpServletRequestWrapper.authenticate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpServletRequestWrapper.authenticate()
方法的具体详情如下:
包路径:javax.servlet.http.HttpServletRequestWrapper
类名称:HttpServletRequestWrapper
方法名:authenticate
[英]The default behavior of this method is to call authenticate on the wrapped request object.
[中]此方法的默认行为是对包装的请求对象调用authenticate。
代码示例来源:origin: cloudfoundry/uaa
@Override
public boolean authenticate(HttpServletResponse response) throws IOException, ServletException {
return super.authenticate(response);
}
代码示例来源:origin: com.github.wuic/wuic-servlet
/**
* {@inheritDoc}
*/
@Override
public boolean authenticate(final HttpServletResponse response) throws IOException, ServletException {
// Synchronized access
synchronized (mutex) {
return super.authenticate(response);
}
}
内容来源于网络,如有侵权,请联系作者删除!