- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for getUserSid (0.74 sec)
-
src/test/java/jcifs/pac/PacLogonInfoTest.java
when(logonInfo.getLogonScript()).thenReturn("logon.bat"); when(logonInfo.getUserAccountControl()).thenReturn(0x200); when(logonInfo.getUserFlags()).thenReturn(0); when(logonInfo.getUserSid()).thenReturn(userSid); when(logonInfo.getGroupSid()).thenReturn(new SID("S-1-5-21-1-2-3-513")); when(logonInfo.getGroupSids()).thenReturn(new SID[0]); when(logonInfo.getExtraSids()).thenReturn(new SID[0]);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
*/ public String getDomainName() { return this.domainName; } /** * Returns the user's Security Identifier (SID). * @return the user SID */ public SID getUserSid() { return this.userSid; } /** * Returns the user's primary group SID. * @return the primary group SID */ public SID getGroupSid() { return this.groupSid;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
// Implementation // ============== @Override public String getUserId() { return user.getName(); } // =================================================================================== // AccessorRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
final Map<String, String> valueMap = new LinkedHashMap<>(); valueMap.put("action", Action.LOGIN.name()); valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-")); valueMap.put("permissions", user.map(u -> stream(u.getPermissions()).get(stream -> stream.collect(Collectors.joining(permissionSeparator))))
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
if (!getUserBean().isPresent()) { logger.warn("User session not found during password change"); return redirect(LoginAction.class); } final String username = getUserBean().get().getUserId(); try { userService.changePassword(username, form.newPassword); saveInfo(messages -> messages.addSuccessChangedPassword(GLOBAL)); } catch (final Exception e) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
nameidSPNameQualifier = auth.getNameIdSPNameQualifier(); } @Override public String toString() { return "{" + getUserId() + "}"; } @Override public String getUserId() { return nameId; } /** * Gets the SAML user. * @return The SAML user. */ public SamlUser getUser() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java
this.username = username; } /** * Gets the user identifier from this credential. * * @return The username from SPNEGO authentication */ @Override public String getUserId() { return username; } /** * Returns a string representation of this credential. * * @return A string representation containing the username in braces */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/base/login/FessCredential.java
* Provides access to user identification information. */ public interface FessCredential { /** * Gets the user ID for this credential. * @return The user ID. */ String getUserId();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 927 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java
* @param password the password */ public LocalUserCredential(final String user, final String password) { super(user, password); } @Override public String getUserId() { return getUser(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0)