cn.teleinfo.idpointer.sdk.session.AuthenticationInfoManagerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of id-pointer-sdk Show documentation
Show all versions of id-pointer-sdk Show documentation
基于Java语言开发的工业互联网标识解析体系客户端软件开发工具包,应用通过集成 id-pointer-sdk,快速对接标识解析、标识注册、标识维护等功能服务。
The newest version!
package cn.teleinfo.idpointer.sdk.session;
public class AuthenticationInfoManagerFactory {
private static AuthenticationInfoManager authenticationInfoManager;
public static AuthenticationInfoManager getAuthenticationInfoManager() {
if (authenticationInfoManager == null) {
synchronized (AuthenticationInfoManagerFactory.class) {
if (authenticationInfoManager == null) {
authenticationInfoManager = new AuthenticationInfoManagerDefault();
}
}
}
return authenticationInfoManager;
}
}