- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.dispose()
方法的一些代码示例,展示了WindowsSecurityContextImpl.dispose()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WindowsSecurityContextImpl.dispose()
方法的具体详情如下:
包路径:waffle.windows.auth.impl.WindowsSecurityContextImpl
类名称:WindowsSecurityContextImpl
方法名:dispose
[英]Dispose a security context.
[中]处理安全上下文。
代码示例来源:origin: org.postgresql/postgresql
/**
* Clean up native win32 resources after completion or failure of SSPI authentication. This
* SSPIClient instance becomes unusable after disposal.
*/
public void dispose() {
if (sspiContext != null) {
sspiContext.dispose();
sspiContext = null;
}
if (clientCredentials != null) {
clientCredentials.dispose();
clientCredentials = null;
}
}
}
代码示例来源:origin: com.github.waffle/waffle-jna
@Override
public void dispose() {
WindowsSecurityContextImpl.dispose(this.ctx);
if (this.credentials != null) {
this.credentials.dispose();
}
}
代码示例来源:origin: com.github.dblock.waffle/waffle-jna
@Override
public void dispose() {
WindowsSecurityContextImpl.dispose(this.ctx);
if (this.credentials != null) {
this.credentials.dispose();
}
}
代码示例来源:origin: Waffle/waffle
@Override
public void dispose() {
WindowsSecurityContextImpl.dispose(this.ctx);
if (this.credentials != null) {
this.credentials.dispose();
}
}
代码示例来源:origin: com.github.dblock.waffle/waffle-jna
case WinError.SEC_E_BUFFER_TOO_SMALL:
tokenSize += Sspi.MAX_TOKEN_SIZE;
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
break;
case WinError.SEC_E_OK:
break;
default:
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
this.continueContexts.asMap().remove(connectionId);
throw new Win32Exception(rc);
代码示例来源:origin: com.github.waffle/waffle-jna
case WinError.SEC_E_BUFFER_TOO_SMALL:
tokenSize += Sspi.MAX_TOKEN_SIZE;
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
break;
case WinError.SEC_E_OK:
break;
default:
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
this.resetSecurityToken(connectionId);
throw new Win32Exception(rc);
代码示例来源:origin: Waffle/waffle
case WinError.SEC_E_BUFFER_TOO_SMALL:
tokenSize += Sspi.MAX_TOKEN_SIZE;
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
break;
case WinError.SEC_E_OK:
break;
default:
sc.dispose();
WindowsSecurityContextImpl.dispose(continueHandle);
this.resetSecurityToken(connectionId);
throw new Win32Exception(rc);
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.()方法的一些代码示例,展示了WindowsSecurityContextI
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.getHandle()方法的一些代码示例,展示了WindowsSecurit
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.setPrincipalName()方法的一些代码示例,展示了Windows
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.getToken()方法的一些代码示例,展示了WindowsSecurity
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.initialize()方法的一些代码示例,展示了WindowsSecuri
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.setSecurityContext()方法的一些代码示例,展示了Windo
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.dispose()方法的一些代码示例,展示了WindowsSecurityC
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.setSecurityPackage()方法的一些代码示例,展示了Windo
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.setCredentialsHandle()方法的一些代码示例,展示了Win
本文整理了Java中waffle.windows.auth.impl.WindowsSecurityContextImpl.setToken()方法的一些代码示例,展示了WindowsSecurity
我是一名优秀的程序员,十分优秀!