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

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

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

AuthenticatorBase.stop介绍

[英]Gracefully terminate the active use of the public methods of this component. This method should be the last one called on a given instance of this component.
[中]优雅地终止此组件的公共方法的活动使用。此方法应该是在此组件的给定实例上调用的最后一个方法。

代码示例

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

/**
 * Finalize the database we used for client verification and
 * certificate validation (if any).
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that prevents this component from being used
 */
public void stop() throws LifecycleException {
  super.stop();
}

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

/**
 * Finalize the database we used for client verification and
 * certificate validation (if any).
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that prevents this component from being used
 */
public void stop() throws LifecycleException {
  super.stop();
}

代码示例来源:origin: tomcat/catalina

/**
 * Finalize the database we used for client verification and
 * certificate validation (if any).
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that prevents this component from being used
 */
public void stop() throws LifecycleException {
  super.stop();
}

相关文章

微信公众号

最新文章

更多