Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.security.auth.jmod - Security Auth Module
JDK 11 jdk.security.auth.jmod is the JMOD file for JDK 11 Security Auth module.
JDK 11 Security Auth module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.security.auth.jmod.
JDK 11 Security Auth module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Security Auth module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.security.auth.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/security/auth/module/NTSystem.java
/* * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.security.auth.module; /** * This class implementation retrieves and makes available NT * security information for the current user. * */ public class NTSystem { private native void getCurrent(boolean debug); private native long getImpersonationToken0(); private String userName; private String domain; private String domainSID; private String userSID; private String[] groupIDs; private String primaryGroupID; private long impersonationToken; /** * Instantiate an {@code NTSystem} and load * the native library to access the underlying system information. */ public NTSystem() { this(false); } /** * Instantiate an {@code NTSystem} and load * the native library to access the underlying system information. */ NTSystem(boolean debug) { loadNative(); getCurrent(debug); } /** * Get the username for the current NT user. * * @return the username for the current NT user. */ public String getName() { return userName; } /** * Get the domain for the current NT user. * * @return the domain for the current NT user. */ public String getDomain() { return domain; } /** * Get a printable SID for the current NT user's domain. * * @return a printable SID for the current NT user's domain. */ public String getDomainSID() { return domainSID; } /** * Get a printable SID for the current NT user. * * @return a printable SID for the current NT user. */ public String getUserSID() { return userSID; } /** * Get a printable primary group SID for the current NT user. * * @return the primary group SID for the current NT user. */ public String getPrimaryGroupID() { return primaryGroupID; } /** * Get the printable group SIDs for the current NT user. * * @return the group SIDs for the current NT user. */ public String[] getGroupIDs() { return groupIDs == null ? null : groupIDs.clone(); } /** * Get an impersonation token for the current NT user. * * @return an impersonation token for the current NT user. */ public synchronized long getImpersonationToken() { if (impersonationToken == 0) { impersonationToken = getImpersonationToken0(); } return impersonationToken; } private void loadNative() { System.loadLibrary("jaas"); } }
⏎ com/sun/security/auth/module/NTSystem.java
Or download all of them as a single archive file:
File name: jdk.security.auth-11.0.1-src.zip File size: 65197 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.security.jgss.jmod - Security JGSS Module
2020-04-14, 11815👍, 0💬
Popular Posts:
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
Where to find answers to frequently asked questions on Downloading and Installing ojdbc.jar - JDBC D...
How to read XML document from socket connections with the socket\DelayedInput.java provided in the A...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....